diff -u linux-azure-6.2-6.2.0/arch/x86/include/asm/cpufeatures.h linux-azure-6.2-6.2.0/arch/x86/include/asm/cpufeatures.h --- linux-azure-6.2-6.2.0/arch/x86/include/asm/cpufeatures.h +++ linux-azure-6.2-6.2.0/arch/x86/include/asm/cpufeatures.h @@ -14,7 +14,7 @@ * Defines x86 CPU feature bits */ #define NCAPINTS 20 /* N 32-bit words worth of info */ -#define NBUGINTS 1 /* N 32-bit bug flags */ +#define NBUGINTS 2 /* N 32-bit bug flags */ /* * Note: If the comment begins with a quoted string, that string is used @@ -471,2 +471,4 @@ +/* BUG word 2 */ +#define X86_BUG_DIV0 X86_BUG(1*32 + 1) /* AMD DIV0 speculation bug */ #endif /* _ASM_X86_CPUFEATURES_H */ diff -u linux-azure-6.2-6.2.0/arch/x86/include/asm/processor.h linux-azure-6.2-6.2.0/arch/x86/include/asm/processor.h --- linux-azure-6.2-6.2.0/arch/x86/include/asm/processor.h +++ linux-azure-6.2-6.2.0/arch/x86/include/asm/processor.h @@ -680,9 +680,11 @@ #ifdef CONFIG_CPU_SUP_AMD extern u32 amd_get_nodes_per_socket(void); extern u32 amd_get_highest_perf(void); +extern void amd_clear_divider(void); #else static inline u32 amd_get_nodes_per_socket(void) { return 0; } static inline u32 amd_get_highest_perf(void) { return 0; } +static inline void amd_clear_divider(void) { } #endif extern unsigned long arch_align_stack(unsigned long sp); diff -u linux-azure-6.2-6.2.0/arch/x86/kernel/cpu/amd.c linux-azure-6.2-6.2.0/arch/x86/kernel/cpu/amd.c --- linux-azure-6.2-6.2.0/arch/x86/kernel/cpu/amd.c +++ linux-azure-6.2-6.2.0/arch/x86/kernel/cpu/amd.c @@ -75,6 +75,10 @@ AMD_MODEL_RANGE(0x17, 0x60, 0x0, 0x7f, 0xf), AMD_MODEL_RANGE(0x17, 0xa0, 0x0, 0xaf, 0xf)); +static const int amd_div0[] = + AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x17, 0x00, 0x0, 0x2f, 0xf), + AMD_MODEL_RANGE(0x17, 0x50, 0x0, 0x5f, 0xf)); + static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum) { int osvw_id = *erratum++; @@ -1115,6 +1119,11 @@ check_null_seg_clears_base(c); zenbleed_check(c); + + if (cpu_has_amd_erratum(c, amd_div0)) { + pr_notice_once("AMD Zen1 DIV0 bug detected. Disable SMT for full protection.\n"); + setup_force_cpu_bug(X86_BUG_DIV0); + } } #ifdef CONFIG_X86_32 @@ -1258,0 +1268,11 @@ + +/* + * Issue a DIV 0/1 insn to clear any division data from previous DIV + * operations. + */ +void noinstr amd_clear_divider(void) +{ + asm volatile(ALTERNATIVE("", "div %2\n\t", X86_BUG_DIV0) + :: "a" (0), "d" (0), "r" (1)); +} +EXPORT_SYMBOL_GPL(amd_clear_divider); diff -u linux-azure-6.2-6.2.0/arch/x86/kvm/svm/svm.c linux-azure-6.2-6.2.0/arch/x86/kvm/svm/svm.c --- linux-azure-6.2-6.2.0/arch/x86/kvm/svm/svm.c +++ linux-azure-6.2-6.2.0/arch/x86/kvm/svm/svm.c @@ -3945,6 +3945,8 @@ guest_state_enter_irqoff(); + amd_clear_divider(); + if (sev_es_guest(vcpu->kvm)) __svm_sev_es_vcpu_run(svm, spec_ctrl_intercepted); else diff -u linux-azure-6.2-6.2.0/debian.azure-6.2/abi/abiname linux-azure-6.2-6.2.0/debian.azure-6.2/abi/abiname --- linux-azure-6.2-6.2.0/debian.azure-6.2/abi/abiname +++ linux-azure-6.2-6.2.0/debian.azure-6.2/abi/abiname @@ -1 +1 @@ -1010 +1011 diff -u linux-azure-6.2-6.2.0/debian.azure-6.2/abi/amd64/azure linux-azure-6.2-6.2.0/debian.azure-6.2/abi/amd64/azure --- linux-azure-6.2-6.2.0/debian.azure-6.2/abi/amd64/azure +++ linux-azure-6.2-6.2.0/debian.azure-6.2/abi/amd64/azure @@ -10,72 +10,72 @@ CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x63c7c7a2 crypto_cipher_encrypt_one vmlinux CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x72105924 crypto_cipher_decrypt_one vmlinux CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xeac34887 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x0039bf45 set_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x03e63b2e devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x04a8fdbf cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0550a781 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x1b26b7ae cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0d854ce8 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x159f7eac cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x19bb97c8 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1b2756c7 cxl_find_regblock drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1ed5933d cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x239695c5 set_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2c8e13b0 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x30520100 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e4eb617 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e6db95f to_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x32a69ff8 is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x33197535 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x36336072 cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x42e7a2c3 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4d29d9ba schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x594d4d5a to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x599d3677 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x34268e90 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x36551dcd cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x378929d2 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4541b876 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4906bb88 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4cfb5a86 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4f2c8387 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x529fa441 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57bd5d82 cxl_await_media_ready drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x624131a1 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6646e8ca devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6753a081 cxl_bus_type drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6b36e9d8 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6b6f3e4f cxl_decoder_add_locked drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6c1b2c18 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6eb16df3 cxl_internal_send_cmd drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x72a22e74 cxl_decoder_add drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x747b1614 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x75ada4b4 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x750373f7 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7bd10c41 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x83eb01c8 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux CXL EXPORT_SYMBOL_GPL 0x84ecda20 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x89cb1649 cxl_dev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8c143f10 cxl_decoder_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9c86cd5e devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9df25864 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b7b19a6 to_cxl_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x9e8a9db9 is_cxl_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa150d2ca is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2336b4d to_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa33a873e cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xae1958e5 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb1917d04 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb4a2dfff cxl_hdm_decode_init drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xb916f7b6 read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb98c9143 to_cxl_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xba17b902 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbb0155ec devm_cxl_add_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xbd3cec01 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc0eceda4 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc1a8893c devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc300bc4e clear_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc3c49057 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc7b8b9c0 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc816458d cxl_await_media_ready drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc945aacf devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbebeaf7 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xce2bca60 cxl_decoder_add_locked drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xd090c4a8 is_cxl_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xd8cdc14c is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd94bf9a7 cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe05ca501 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdac9070f cxl_endpoint_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe1a51e61 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe2c11493 cxl_hb_modulo drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe5bf1332 to_cxl_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe720e42f is_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe9bb5fc0 cxl_port_to_pci_bus drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf1e7dc30 cxl_probe_component_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf482ddf4 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf58c45fb devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5dfc0e0 cxl_mem_find_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf83ba080 is_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf9e74265 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfb9f505d devm_cxl_add_nvdimm drivers/cxl/core/cxl_core DEVMEM EXPORT_SYMBOL_GPL 0x3c804b25 cpu_cache_invalidate_memregion vmlinux DEVMEM EXPORT_SYMBOL_GPL 0xd6551b9c cpu_cache_has_invalidate_memregion vmlinux DMA_BUF EXPORT_SYMBOL_GPL 0x1233c8ed dma_buf_vmap_unlocked vmlinux @@ -395,12 +395,10 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a21ce3a drm_atomic_private_obj_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a897027 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba98cd3 drmm_mutex_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0baf30cb drm_vblank_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d785016 drm_connector_attach_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db0bd3f drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e954838 drm_mode_object_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb70586 drm_plane_get_damage_clips_count @@ -426,6 +424,7 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e2bc1b drm_atomic_add_affected_connectors EXPORT_SYMBOL drivers/gpu/drm/drm 0x16157caf drm_connector_set_link_status_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c3c8f0 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x189c452a __drmm_mutex_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free EXPORT_SYMBOL drivers/gpu/drm/drm 0x1abaeaad drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b3a2605 drm_connector_attach_privacy_screen_provider @@ -784,6 +783,7 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0xe469ccdb drm_connector_attach_dp_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d040a7 drm_connector_attach_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ba540d drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77dee5b drm_gem_dmabuf_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83c5bfb drm_noop EXPORT_SYMBOL drivers/gpu/drm/drm 0xe898f2d4 drm_crtc_check_viewport @@ -2121,41 +2121,37 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf36dcea4 mlx4_assign_eq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa3bb49d mlx4_SET_PORT_user_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd7f197d mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0196acd2 mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x020557b9 __tracepoint_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x023b66a7 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02db54e1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c19562 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05ef380c mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x071edf8a mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07276c22 mlx5_core_destroy_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x073d9ee7 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ca89113 mlx5_core_create_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb34eaf mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f09126d mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1015587f mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1004e118 mlx5_eswitch_reg_c1_loopback_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x106f3ca0 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1235d5d3 mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1415e3cc mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16261094 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1629fbc7 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16ae233c mlx5_lag_is_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1777f278 mlx5_core_query_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17de9d8d mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f01b17 mlx5_lag_is_sriov EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eede13e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f317343 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd85bb7 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fb73e7e mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ba4fe2 __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x246e237b mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24798ff1 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27b52ae7 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29081a80 mlx5_get_flow_namespace EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b5f0015 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d225862 mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec85e5a mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302b5f9e mlx5_rl_remove_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30b0b3a2 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31cc4afe mlx5_lag_get_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c59cc2 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33f6d71b mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x342d6cc7 mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3571fc42 mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3790f628 mlx5_cmd_cleanup_async_ctx @@ -2167,45 +2163,45 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f04041a mlx5_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4054cda2 mlx5_rsc_dump_cmd_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4097614a __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x449c3731 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42544172 mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4728b2a1 mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b2f2810 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ce33974 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e261216 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e8fc556 mlx5_eswitch_get_vport_metadata_for_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ea4b33f mlx5_core_alloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f894dfb mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534f6a21 mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5359674b mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542a83bc mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b8fcd9 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x564ca539 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58f37a48 mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0afe88 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c18ab91 mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c83ee4a mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e61d549 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de96221 mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6378bbd2 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63942d65 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x637f74d6 mlx5_vf_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65758b49 mlx5_eswitch_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65e40e3a mlx5_core_alloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6749b628 mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67ae6252 mlx5_core_query_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6840eac3 __tracepoint_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a126f2f mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a564659 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8339ce mlx5_lag_get_num_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8b2d9d mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa56725 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b275ddd mlx5_eswitch_vport_match_metadata_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e9047e0 mlx5_core_query_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71807d32 __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e4e92a mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73426086 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7446842c mlx5_debugfs_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x748a29d1 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76934d11 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7769404b mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78d5f744 mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79275583 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7938220a mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a980687 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a7117a5 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d7919a8 mlx5_cmd_create_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d98b885 mlx5_qp_debugfs_cleanup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8164fd8b mlx5_core_destroy_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x828411c9 mlx5_core_create_cq @@ -2214,11 +2210,12 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8917a446 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b3d1217 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c3a8e41 mlx5_eswitch_add_send_to_vport_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8db3d13a mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90090303 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b1079c mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92a5dad5 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3f01f1 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fc03195 mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92b926ca __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932b0b29 mlx5_eq_destroy_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f108d9 __tracepoint_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9707fdfb mlx5_core_query_mkey @@ -2226,8 +2223,9 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bcc6d2f mlx5_core_create_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bfeef7d __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa03a5d4d mlx5_comp_irq_get_affinity_mask EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa043516c mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0bafc5b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2333f03 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa33fbc6f __SCK__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4b57159 mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d88f68 mlx5_mpfs_add_mac @@ -2236,30 +2234,25 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9d72921 mlx5_fs_remove_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac5ffd13 mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacaedcbb mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad371724 mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadce8166 mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaea4f8bf mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb037c5a0 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb183e4ef mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1fc95c5 mlx5_core_destroy_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2a4b8d1 __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb465e6b3 mlx5_eswitch_get_vport_metadata_for_match EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb610a9d2 mlx5_eq_disable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7095f57 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb97b8b63 __SCK__tp_func_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaa5e83f mlx5_cmd_out_err EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac4445c mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1a08aeb mlx5_lag_get_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2ec46f7 mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4c9117c mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8c1d56c mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaaf6380 mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc686001 mlx5_core_create_tir @@ -2267,28 +2260,35 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1143c61 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1350b3b mlx5_eq_get_eqe EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3716846 mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd58526c4 mlx5_core_destroy_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6bde8c5 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd713d4f7 mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd859a651 mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd894caf1 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8f39226 mlx5_lag_is_sriov EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaf56898 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaf64f04 mlx5_sriov_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb622108 __SCT__tp_func_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd92e175 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde6a4003 mlx5_sriov_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0eeab4c mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1001dae mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe14614e9 mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe452d6c3 mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8e06241 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe737f98f mlx5_lag_get_slave_port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a3a460 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedc33713 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea35428a mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0ca51c1 mlx5_eswitch_get_vport_metadata_for_match EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0f642d0 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf11853b0 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b4bf4e mlx5_rdma_rn_get_params EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21e494b __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf48db479 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5cd9980 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7137ad8 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9731695 mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9fd90ba mlx5_debugfs_get_dev_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb7fd027 mlx5_packet_reformat_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash @@ -3518,22 +3518,22 @@ EXPORT_SYMBOL net/mac802154/mac802154 0xb5049b5b ieee802154_xmit_hw_error EXPORT_SYMBOL net/mac802154/mac802154 0xbc0b101e ieee802154_register_hw EXPORT_SYMBOL net/mac802154/mac802154 0xea8c0ac2 ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x04024a29 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ce6a904 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x226c22f6 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3431dd2c ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x505a4128 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63efc66b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x64870d79 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8be05e14 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8dd78818 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96152604 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x964da91c ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97b83215 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa40b55b6 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc0199328 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x24dc2506 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2de93205 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ed31606 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d61b9ab unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x930de5c0 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9aa469b6 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9cd20be1 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9dff095e ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa7bc3fe0 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb275d6e4 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb392e5e8 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba9aaf92 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9fbbae9 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd3554e42 ip_vs_nfct_expect_related EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf12a9740 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf95fa5a5 register_ip_vs_app EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6106c068 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find @@ -3653,25 +3653,25 @@ EXPORT_SYMBOL net/phonet/phonet 0x8de69317 phonet_proto_register EXPORT_SYMBOL net/phonet/phonet 0x972888ac pn_sock_get_port EXPORT_SYMBOL net/phonet/phonet 0xb83a001b phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x045ddb70 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x052b203d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fb2a6fb rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0afd09a3 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1f7e9105 rxrpc_get_server_data_key EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id EXPORT_SYMBOL net/rxrpc/rxrpc 0x32db4769 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3f52dc35 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e19bf5c rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e030901 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x90409fa6 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x938d4059 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb2ee1ff0 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbfe425c9 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcab8cdb3 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3712e819 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3eb74297 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x542a2193 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x70057c03 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9276290a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x946ef234 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x981e890c rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x98bc28e8 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa4311e34 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc409e646 rxrpc_kernel_abort_call EXPORT_SYMBOL net/rxrpc/rxrpc 0xce0d7216 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdb611db4 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdbd05920 rxrpc_kernel_get_peer EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc2d9ff0 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0xec476b4f rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe5644e18 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0xf38d4cc1 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa78397b rxrpc_kernel_get_epoch EXPORT_SYMBOL net/sctp/sctp 0x853377b5 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x1aac279f __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback @@ -3689,17 +3689,17 @@ EXPORT_SYMBOL net/smc/smc 0xcc252080 __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xe91e73cc __SCK__tp_func_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xf9a467e1 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x322a3aba gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6a3b9af1 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa0693f0d gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3d6cebd3 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x51442910 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x56885b6f xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x1e7460d9 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x341978c6 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x60d50eac tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xac450d05 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x02f08227 tls_get_record +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x14c8edb9 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2fc1ec72 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb1b1f24a gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x190e5701 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x33f78524 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7e6c6692 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x4904f77b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x7e5561e1 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xac8069ae tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xfce3be90 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x3fc3a0f4 tls_get_record EXPORT_SYMBOL net/wireless/cfg80211 0x019502e6 __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x05bba01c cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create @@ -3939,7 +3939,6 @@ EXPORT_SYMBOL vmlinux 0x04540b32 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047c948d xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x049fe2fb blk_mq_alloc_request @@ -3994,7 +3993,6 @@ EXPORT_SYMBOL vmlinux 0x0690ee96 ip6_xmit EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 EXPORT_SYMBOL vmlinux 0x06ba3ffa pci_enable_wake -EXPORT_SYMBOL vmlinux 0x06bd4d2a xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal EXPORT_SYMBOL vmlinux 0x06d12019 vga_switcheroo_register_audio_client @@ -4114,6 +4112,7 @@ EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0x0c581d7a pipe_lock EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c79d176 inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0x0c9b1e79 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x0c9f9e84 configfs_undepend_item EXPORT_SYMBOL vmlinux 0x0ca6c023 __folio_put @@ -4176,6 +4175,7 @@ EXPORT_SYMBOL vmlinux 0x0f17b8d2 __ip_options_compile EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu EXPORT_SYMBOL vmlinux 0x0f2846a7 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x0f2a6647 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x0f300471 simple_transaction_release EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero EXPORT_SYMBOL vmlinux 0x0f4e574c set_blocksize @@ -4260,7 +4260,6 @@ EXPORT_SYMBOL vmlinux 0x127feaa0 may_umount EXPORT_SYMBOL vmlinux 0x129fd69b tcp_recvmsg EXPORT_SYMBOL vmlinux 0x12b4229b skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x12b8bfc1 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x12c85357 devm_memremap EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12e240a4 jbd2_fc_end_commit @@ -4271,7 +4270,6 @@ EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource EXPORT_SYMBOL vmlinux 0x1312334a uart_resume_port -EXPORT_SYMBOL vmlinux 0x13136a01 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark EXPORT_SYMBOL vmlinux 0x132d9185 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x13323d0c __ClearPageMovable @@ -4356,6 +4354,7 @@ EXPORT_SYMBOL vmlinux 0x169f1beb of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc EXPORT_SYMBOL vmlinux 0x16aa6ebc copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x16b6a045 __aperture_remove_legacy_vga_devices EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table EXPORT_SYMBOL vmlinux 0x16dc2ae7 blk_rq_init EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init @@ -4365,6 +4364,7 @@ EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler EXPORT_SYMBOL vmlinux 0x17157590 softnet_data EXPORT_SYMBOL vmlinux 0x173c88da freeze_super +EXPORT_SYMBOL vmlinux 0x174142f9 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x17480c1f __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock EXPORT_SYMBOL vmlinux 0x1763a502 inet_proto_csum_replace16 @@ -4386,6 +4386,7 @@ EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x18a3f364 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x18a8b6ff finish_swait +EXPORT_SYMBOL vmlinux 0x18ad42a7 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe EXPORT_SYMBOL vmlinux 0x18e27717 param_set_copystring EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start @@ -4552,7 +4553,6 @@ EXPORT_SYMBOL vmlinux 0x215d5997 nf_log_register EXPORT_SYMBOL vmlinux 0x216806f2 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x216c6636 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x216e8ac3 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x217164bf mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event EXPORT_SYMBOL vmlinux 0x21786112 tcp_ld_RTO_revert @@ -4637,7 +4637,6 @@ EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x250e8e2f tcp_release_cb EXPORT_SYMBOL vmlinux 0x2556b04a param_get_hexint -EXPORT_SYMBOL vmlinux 0x2559e42d inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x2564b179 scsi_device_set_state EXPORT_SYMBOL vmlinux 0x25653377 may_setattr EXPORT_SYMBOL vmlinux 0x2565661e tcp_v4_send_check @@ -4839,7 +4838,6 @@ EXPORT_SYMBOL vmlinux 0x2d76b9e9 release_sock EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da28bc8 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x2da37b0e blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x2da80b57 _copy_from_iter EXPORT_SYMBOL vmlinux 0x2db2e798 mr_mfc_seq_next @@ -4872,7 +4870,6 @@ EXPORT_SYMBOL vmlinux 0x2ee31d4a proc_set_user EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f2b667d xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f310aff page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device @@ -5006,7 +5003,6 @@ EXPORT_SYMBOL vmlinux 0x3550f865 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x355c3ad1 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356afec3 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x356dcf34 copy_string_kernel EXPORT_SYMBOL vmlinux 0x358e436d lookup_one EXPORT_SYMBOL vmlinux 0x358f5f6a param_ops_bint @@ -5328,6 +5324,7 @@ EXPORT_SYMBOL vmlinux 0x43f494b2 scsi_print_command EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x441d7a5e touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x442528dc xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x442c2a00 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x443510cb __put_devmap_managed_page_refs EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access @@ -5489,6 +5486,7 @@ EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node EXPORT_SYMBOL vmlinux 0x4bd4e6dd mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0x4be4e16c neigh_table_init +EXPORT_SYMBOL vmlinux 0x4beaab7b sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x4bec69e0 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf73240 pci_read_config_byte @@ -5501,6 +5499,7 @@ EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast EXPORT_SYMBOL vmlinux 0x4c5e6652 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x4c79de42 module_layout +EXPORT_SYMBOL vmlinux 0x4c876bde xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x4c8cbf4e netdev_features_change EXPORT_SYMBOL vmlinux 0x4c904383 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base @@ -5512,8 +5511,8 @@ EXPORT_SYMBOL vmlinux 0x4cf7e18f __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x4d163910 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d31f948 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d72dd3b seq_lseek +EXPORT_SYMBOL vmlinux 0x4d78f480 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d82a89c tty_do_resize EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d945acc pnpacpi_protocol @@ -5623,7 +5622,6 @@ EXPORT_SYMBOL vmlinux 0x516ed1df sock_edemux EXPORT_SYMBOL vmlinux 0x517180da nf_ip_checksum EXPORT_SYMBOL vmlinux 0x51733463 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x51a20f85 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0x51a56340 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled @@ -5948,6 +5946,7 @@ EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x60bf56a9 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60dc74bb xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x60dcf740 reuseport_alloc EXPORT_SYMBOL vmlinux 0x60e9c99b t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x60ec85e7 icmp_ndo_send @@ -6072,7 +6071,6 @@ EXPORT_SYMBOL vmlinux 0x661f1733 folio_mark_accessed EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x66349bd3 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x663620e5 path_is_under EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt @@ -6127,6 +6125,7 @@ EXPORT_SYMBOL vmlinux 0x6880140b vme_dma_list_free EXPORT_SYMBOL vmlinux 0x68a6d05c inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x68cea4e5 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x68dd3396 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x68f91cbf seq_read_iter EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0x69054396 pci_prepare_to_sleep @@ -6141,7 +6140,6 @@ EXPORT_SYMBOL vmlinux 0x6982adc3 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69b4bc7f xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69f7cc5d block_write_begin @@ -6304,6 +6302,7 @@ EXPORT_SYMBOL vmlinux 0x70a0031c phy_detach EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup EXPORT_SYMBOL vmlinux 0x70bb7de2 __x86_indirect_jump_thunk_rbp +EXPORT_SYMBOL vmlinux 0x70c0d93f xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x70e00851 folio_end_private_2 EXPORT_SYMBOL vmlinux 0x70f25751 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x710056ac abort @@ -6405,7 +6404,6 @@ EXPORT_SYMBOL vmlinux 0x7648d378 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766ef806 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc EXPORT_SYMBOL vmlinux 0x767e300d input_inject_event @@ -6465,7 +6463,6 @@ EXPORT_SYMBOL vmlinux 0x78cc24d1 open_exec EXPORT_SYMBOL vmlinux 0x78da262f flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78fb1d67 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x79064c04 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x79159b6a devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x791a76c0 generic_file_fsync @@ -6499,7 +6496,6 @@ EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7accc899 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7ae3e543 fscrypt_encrypt_pagecache_blocks @@ -6658,6 +6654,7 @@ EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec EXPORT_SYMBOL vmlinux 0x82907b2c dquot_free_inode EXPORT_SYMBOL vmlinux 0x82957b4d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x82a7e00f __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x82aad106 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x82c1048f ip_frag_next EXPORT_SYMBOL vmlinux 0x82c2660b qdisc_warn_nonwc @@ -6780,6 +6777,7 @@ EXPORT_SYMBOL vmlinux 0x8858a550 dev_printk_emit EXPORT_SYMBOL vmlinux 0x88597d4d kfree_skb_partial EXPORT_SYMBOL vmlinux 0x88615430 input_reset_device +EXPORT_SYMBOL vmlinux 0x88618594 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x8864ad84 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x88734fd5 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x887c9bd5 ip6tun_encaps @@ -6923,6 +6921,7 @@ EXPORT_SYMBOL vmlinux 0x8f064c1e pci_enable_device EXPORT_SYMBOL vmlinux 0x8f1d2d44 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f28a817 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x8f35ebfe sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x8f3904e2 pci_get_class EXPORT_SYMBOL vmlinux 0x8f761ebc remove_proc_subtree @@ -6981,7 +6980,6 @@ EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get EXPORT_SYMBOL vmlinux 0x9244bac0 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x925173a2 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x9252d49d sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x925da4d3 do_splice_direct @@ -7093,6 +7091,7 @@ EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x974b3ec8 tty_port_close_end EXPORT_SYMBOL vmlinux 0x975073a6 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x9754dab2 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x975f8652 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base EXPORT_SYMBOL vmlinux 0x9766949e readahead_expand @@ -7118,7 +7117,6 @@ EXPORT_SYMBOL vmlinux 0x984dde3b elv_rb_find EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 EXPORT_SYMBOL vmlinux 0x985b5ba5 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x986ed9b3 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x9874262a inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x9899e70c clk_bulk_get_all EXPORT_SYMBOL vmlinux 0x98a0de7a __SCK__tp_func_kmem_cache_alloc @@ -7165,7 +7163,6 @@ EXPORT_SYMBOL vmlinux 0x9a47f314 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a80cdcf __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x9a91cba0 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x9a94b4c0 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x9aa2ca94 __scsi_print_sense EXPORT_SYMBOL vmlinux 0x9aad73b6 devfreq_unregister_notifier @@ -7227,6 +7224,7 @@ EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x9cf08c04 ip_defrag EXPORT_SYMBOL vmlinux 0x9cf1a033 fiemap_prep +EXPORT_SYMBOL vmlinux 0x9cf73b2e xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x9cfcb5e6 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier @@ -7348,8 +7346,8 @@ EXPORT_SYMBOL vmlinux 0xa1096f9e unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xa119d449 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xa11a3e62 cont_write_begin +EXPORT_SYMBOL vmlinux 0xa122fb47 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xa1281673 end_page_writeback -EXPORT_SYMBOL vmlinux 0xa14b8994 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xa1623a85 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0xa17bd37a inet_del_protocol EXPORT_SYMBOL vmlinux 0xa18a2c3c thaw_bdev @@ -7372,7 +7370,6 @@ EXPORT_SYMBOL vmlinux 0xa26c63ea __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa28f6504 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa29373b8 xfrm_lookup EXPORT_SYMBOL vmlinux 0xa2aca819 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xa2bdce36 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xa2c14ead kernel_param_unlock @@ -7438,7 +7435,6 @@ EXPORT_SYMBOL vmlinux 0xa50709cb pci_enable_ptm EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa523ca59 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock EXPORT_SYMBOL vmlinux 0xa59cf5f4 tcp_sock_set_keepintvl @@ -7602,7 +7598,6 @@ EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0109f2 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode EXPORT_SYMBOL vmlinux 0xad4760d9 tcf_em_tree_dump @@ -7675,6 +7670,7 @@ EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xb054130f kmem_cache_create EXPORT_SYMBOL vmlinux 0xb055e846 vga_put +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb058d20f vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state @@ -7753,6 +7749,7 @@ EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb38d3d3d __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic EXPORT_SYMBOL vmlinux 0xb3ab2b38 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xb3c05b98 sock_recvmsg @@ -7788,6 +7785,7 @@ EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0xb5442632 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xb55396ee mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xb57b63ed xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable EXPORT_SYMBOL vmlinux 0xb592bc58 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev @@ -7933,6 +7931,7 @@ EXPORT_SYMBOL vmlinux 0xbac12e76 scsi_target_resume EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len EXPORT_SYMBOL vmlinux 0xbad0a5a2 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xbad5ff3e xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xbaf1f291 clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset @@ -8160,7 +8159,6 @@ EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xc6779f92 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xc677eefc xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xc68f2601 kernel_connect EXPORT_SYMBOL vmlinux 0xc690a3ea flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc @@ -8170,7 +8168,6 @@ EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware EXPORT_SYMBOL vmlinux 0xc6d5ae24 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xc6e062f0 param_set_ullong -EXPORT_SYMBOL vmlinux 0xc6e1dd00 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc6f4d769 config_group_init_type_name @@ -8202,7 +8199,6 @@ EXPORT_SYMBOL vmlinux 0xc8790b23 dst_init EXPORT_SYMBOL vmlinux 0xc87f63af pneigh_enqueue EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8880ddf xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xc88d022b key_task_permission EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8a7d2b2 zpool_unregister_driver @@ -8375,15 +8371,14 @@ EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface EXPORT_SYMBOL vmlinux 0xd0ce982b simple_release_fs +EXPORT_SYMBOL vmlinux 0xd0d88920 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xd0f081dd dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key EXPORT_SYMBOL vmlinux 0xd10d673c set_user_nice -EXPORT_SYMBOL vmlinux 0xd12cd8d6 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd1453095 key_reject_and_link EXPORT_SYMBOL vmlinux 0xd153fcd2 setattr_copy -EXPORT_SYMBOL vmlinux 0xd15df6fa __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xd171db80 tcp_make_synack EXPORT_SYMBOL vmlinux 0xd18a8429 unregister_md_personality EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count @@ -8412,6 +8407,7 @@ 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 0xd329e109 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xd332b355 param_ops_short EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xd33c19ef nvdimm_namespace_detach_btt @@ -8606,6 +8602,7 @@ EXPORT_SYMBOL vmlinux 0xdca4f1a2 dm_kobject_release EXPORT_SYMBOL vmlinux 0xdcba0f22 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdcd28595 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xdcd501be __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xdcdbb5e3 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress @@ -8641,7 +8638,6 @@ EXPORT_SYMBOL vmlinux 0xde2e4455 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0xde4448c6 d_splice_alias EXPORT_SYMBOL vmlinux 0xde4ccc43 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler EXPORT_SYMBOL vmlinux 0xde5eaa21 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0xde61c000 sock_no_sendpage @@ -8698,6 +8694,7 @@ EXPORT_SYMBOL vmlinux 0xe08a7489 dev_uc_del EXPORT_SYMBOL vmlinux 0xe08cecf5 param_get_byte EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe09da130 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0c9780a key_link @@ -8811,6 +8808,7 @@ EXPORT_SYMBOL vmlinux 0xe52d8b46 __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0xe53aba0f scsi_device_lookup EXPORT_SYMBOL vmlinux 0xe5413624 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xe5560102 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xe5676512 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0xe56e38c0 netdev_err EXPORT_SYMBOL vmlinux 0xe5780739 __dev_kfree_skb_any @@ -8940,6 +8938,7 @@ EXPORT_SYMBOL vmlinux 0xeba42157 submit_bio EXPORT_SYMBOL vmlinux 0xeba45197 pci_free_irq EXPORT_SYMBOL vmlinux 0xebc027d7 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xebc0da71 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0xebc65eb1 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xebc721a9 misc_deregister EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point @@ -8989,9 +8988,11 @@ EXPORT_SYMBOL vmlinux 0xeddd2068 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xededb7e2 sock_bind_add EXPORT_SYMBOL vmlinux 0xedf4dc67 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xee021394 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0xee06e6b8 kern_path_create EXPORT_SYMBOL vmlinux 0xee15dc87 drop_super +EXPORT_SYMBOL vmlinux 0xee2b1d9d xfrm_lookup EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable EXPORT_SYMBOL vmlinux 0xee38a20e __x86_indirect_jump_thunk_r10 EXPORT_SYMBOL vmlinux 0xee3eb952 tcp_create_openreq_child @@ -9003,6 +9004,7 @@ EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9febb4 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeec64614 eth_header EXPORT_SYMBOL vmlinux 0xeed439d0 netlink_rcv_skb @@ -9123,6 +9125,7 @@ EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put EXPORT_SYMBOL vmlinux 0xf3fb74e6 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xf400c5c6 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0xf40dcacd put_ipc_ns EXPORT_SYMBOL vmlinux 0xf423db5a nf_getsockopt EXPORT_SYMBOL vmlinux 0xf43ab248 xfrm_trans_queue @@ -9175,6 +9178,7 @@ EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf69d8e7a xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xf6a60b6b input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xf6aa0795 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xf6ea60b2 ip_sock_set_freebind @@ -9303,12 +9307,10 @@ EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc487b08 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xfc50f484 free_task EXPORT_SYMBOL vmlinux 0xfc5a1d7a jbd2_journal_start EXPORT_SYMBOL vmlinux 0xfc5d2c44 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xfc6529ac pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xfc6bad73 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xfc6e5811 register_fib_notifier EXPORT_SYMBOL vmlinux 0xfc74436a sk_alloc @@ -9409,359 +9411,359 @@ 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 0x00908c68 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x011fa4f4 kvm_get_running_vcpu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0148e467 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01645f33 kvm_apic_has_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ca6a80 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01f60207 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0281a72c kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02cc3329 kvm_irq_has_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x034a19dc __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x035bf47d kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03d01230 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03e77936 kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x045670b9 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0528b04d kvm_set_cr3 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05efccc2 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0667981a kvm_arch_has_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06881c17 __tracepoint_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06a3bdd7 __tracepoint_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0903d8cd kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09176216 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x098da0fa kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08dbc788 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08ef1941 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x090d66e8 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09d956cd __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0afff424 kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b7993e4 kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b9dc7e2 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bac2c34 kvm_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cc5804a __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cd7a1ec kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e026895 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1044d972 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d3606df kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d9acea0 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e2743c8 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f653cfc kvm_vcpu_on_spin EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1177860e kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x129b5c08 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12b3be19 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130bf083 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13d3ce9c kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13fa7c34 kvm_gpc_deactivate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14dcf013 __SCK__tp_func_kvm_cr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1651e019 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16332e52 kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x183e1089 kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1877eca7 kvm_read_guest_virt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18f2b36a __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x191a90e7 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19265db9 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x193c6ee0 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a20a79e kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x196165ce kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19ff3c2e kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b5d13d3 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b9b3843 kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bbd8b2a __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c7cb37b kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c83eaba vcpu_put EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b139a __SCT__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b3d2b kvm_set_msi_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d32bf5a __tracepoint_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d65d4f6 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f11d1cb kvm_gpc_deactivate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x205e4412 kvm_apic_send_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x206a94e7 __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20b38896 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20c0203b kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21f7baf7 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x226f02f5 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2033045b kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20598169 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22652325 kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x236b0b6e kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2498fba7 __SCK__tp_func_kvm_avic_doorbell EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26c72ce2 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26ea4126 kvm_cpuid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27b501d7 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29e01ab4 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a7531a7 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b80931d __SCK__tp_func_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bcf3aef __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb0616 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d248f46 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d3e5bac kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e7dad1a kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30a7b8a8 __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31647e86 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e54661b kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e78d687 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f85bc33 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317e3d92 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31edf588 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31fb794c kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x322d670c kvm_mmu_free_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3289876e __tracepoint_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33e9b44e kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x340bcf81 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x341e1dd0 kvm_page_track_register_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x346114c8 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x348e2730 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34c16fd1 __tracepoint_kvm_fast_mmio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36672646 __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3795d08e __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3806aedc kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38748bbe hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3733820d kvm_apic_update_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38a3ca48 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3949d417 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x394c4205 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39558756 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x397ecc5d gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x399e17d9 kvm_is_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a4d0a3f kvm_vcpu_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd9e582 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3acccee9 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b30a10e kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bb7b805 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c12bb54 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c31c1e7 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cd5133a kvm_apic_update_ppr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d9d2683 kvm_apic_update_ppr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dabf108 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dce2138 kvm_emulate_wbinvd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3df565be __tracepoint_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e55a066 __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e7e7485 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f2c75ba kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f4f2cdd kvm_lapic_find_highest_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f599186 hv_remote_flush_tlb -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f9cff71 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x412c99bf kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fcb583f kvm_fast_pio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41dd8eb4 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42615a0e kvm_x86_vendor_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42b293d2 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42d44e17 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42d5f992 kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42f8837b kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43356e08 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x447ff008 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41edfc98 kvm_fixup_and_inject_pf_error EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44a18b2c __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44ab0030 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44ec0882 handle_ud EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46b1c15f kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x468a3fe7 kvm_skip_emulated_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x473acd5a __SCK__tp_func_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474850b8 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474da061 kvm_set_or_clear_apicv_inhibit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x479cb832 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47b9ab85 kvm_emulate_instruction_from_buffer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48c7f176 __SCK__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49287799 __SCK__kvm_x86_get_cs_db_l_bits EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1333fa mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d6eb436 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a270e19 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4baaf3e7 kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c2d4c57 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cbc3de9 __traceiter_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51001e7c kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x512eecaf kvm_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51deadbc __SCK__tp_func_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5598086e kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x542da480 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54e78257 kvm_post_set_cr0 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55ac7bdb file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f2a6c9 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f4b781 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5784ead5 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f6d740 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x562cccb6 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x563d2933 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56be0bff kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56e6c58b kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5750dece kvm_hv_assist_page_enabled EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58ea34cc __SCK__tp_func_kvm_nested_intr_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59a5e33e kvm_gpc_check EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a063c44 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b481883 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b69d0da kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bb41c5e kvm_vcpu_apicv_activated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d60c3b4 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cd8a0cc kvm_read_guest_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dfc9c25 kvm_get_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fed34e5 kvm_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x617c2822 kvm_complete_insn_gp EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62a7f3dc __x86_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x667aaeab kvm_msr_allowed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66a1a209 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63d27c9e kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x645017ff __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64debd15 kvm_get_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x686f7d4a kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x675ad1f4 kvm_mmu_free_guest_mode_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x687b78fc kvm_x86_vendor_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x691a9643 kvm_deliver_exception_payload EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6982a5e6 __tracepoint_kvm_vmgexit_msr_protocol_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc792a4 kvm_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c79f6ba kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c01c9bc kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c6e42d3 kvm_require_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c9822e0 kvm_emulate_ap_reset_hold EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d17eeb6 __tracepoint_kvm_avic_doorbell EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ee8ab7c kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dd6db82 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x701e1696 kvm_gpc_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70afe10d kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70b12c7a kvm_arch_end_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x712dfff3 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71de6302 kvm_gpc_refresh EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72008a1c __SCK__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72ea739b kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x735a06a2 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x737b945a kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x743734c7 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x727fd09b kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72e6e02f kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x731a7cbd kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74322089 gfn_to_pfn_prot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x747a70af __SCK__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x750a5657 hv_remote_flush_tlb_with_range EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7540460c kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7532e3f0 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75e290f0 kvm_pmu_trigger_event EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x769b13c4 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76d257d3 kvm_write_guest_virt_system EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x771e0dfd __tracepoint_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77cb10bd __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77fa132a kvm_emulate_rdpmc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78ba4e51 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78c88422 kvm_cpu_get_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d6115c __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79cb9111 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79fd00e7 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ba848f1 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ba2d287 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c2dbda5 kvm_vcpu_map EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d5f6508 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dbbcbc0 kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e38f28c kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e663e00 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ce62bb4 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d3e2ea1 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f31e68b kvm_apic_set_eoi_accelerated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f51547e __traceiter_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80123593 kvm_emulate_halt_noskip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80212235 kvm_update_dr7 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8023c87b __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8062f614 kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849b2443 __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8584b1b8 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x873233ad kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a2ea1f0 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x866b1223 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e0262c kvm_find_cpuid_entry_index EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8afdc25f __tracepoint_kvm_avic_ga_log EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bfcba5a kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ba715db kvm_emulate_wrmsr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bfcef85 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c82f3d2 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c93ef4c gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d0986ba kvm_update_cpuid_runtime -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8dff5e12 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e81b30b kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ef29422 kvm_mmu_gva_to_gpa_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x901370e9 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x908c9ab0 kvm_mmu_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c6364d kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x916216d6 x86_decode_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92cf1a85 kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93768979 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9372e9a5 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97e2c572 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x988bb66d kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a8de45b kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cef42e8 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94ee0a51 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x958b8d90 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95962364 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95a1450a vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96cad963 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ab9b8b4 kvm_requeue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d2be32d gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e4dfef7 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e8c37a8 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f10c7e5 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e79b3e9 kvm_get_msr_common EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fc4e71d handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa030ec23 kvm_vcpu_kick EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa093c49a __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1644350 kvm_arch_no_poll EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2339eac kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2fa7e4e load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2fefd78 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa30f1a3f kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4a7351d kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa584a59f kvm_apic_match_dest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa636c79b kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa59cf330 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa75d0ad5 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8a83fcd __SCK__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8db5b47 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8e685ea kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa97f85a2 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9960eaa mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa12510e kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa2f2803 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabf94e28 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xada593a9 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb16e9af7 kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb17a1741 kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1b54f46 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb29a670c kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3277673 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaafc7d10 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xace93941 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad4585ce kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad5b994b kvm_emulate_mwait EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3adada3 kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb424cab3 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4d5cd3c kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb51bea08 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7eac467 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3d8a742 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb53a69fe kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb58af5aa kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5ddf59d kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7644afd kvm_queue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb859f1fd __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb90f87cd kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8c60a58 kvm_x86_vendor_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba90ae02 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb145459 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb3acf4c kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb6c9bd4 kvm_mmu_invlpg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbfd2510 __SCK__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc000b48 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc73f4e8 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcc2c6f2 kvm_arch_start_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcc4903e __SCK__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd126f42 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbce2e995 kvm_sev_es_string_io EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe2fe365 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe8125a7 __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf0fe9ba kvm_update_cpuid_runtime EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf65587f __tracepoint_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc203cb0e __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc286d921 kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc32e8913 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3cda9aa kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4339076 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc312de8b kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3ce0d6c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc43cb8d6 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc477755a kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4cda0c3 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5b68b90 kvm_vcpu_update_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5c80892 __tracepoint_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60da658 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6812a53 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6f4063e kvm_apic_send_ipi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8ad9bba kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc97b4eaa kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9d77f30 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc40da43 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca4afbc6 kvm_mmu_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcce4db23 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd084c68 kvm_read_l1_tsc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd9d6609 __SCK__tp_func_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce5ff487 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce6009b8 kvm_apic_write_nodecode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd16840a8 kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd46eaf21 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1b44184 kvm_handle_invpcid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4b5072d kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd53a37e1 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6c03765 kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7cadf87 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd91445ca kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd99aae85 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb88f9fc kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8905e32 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdac3f958 __kvm_is_valid_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd564f34 kvm_gpc_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddc07e88 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd85c7c8 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde6efcdf kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf1c27d5 kvm_gpc_activate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf38e44f __SCK__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf950a8a kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d583c5 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2474aab kvm_find_cpuid_entry_index -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe27592b7 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe517463e kvm_vcpu_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe587e4bf kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7c3dee9 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8d23433 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8e7dcc9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4ff49c6 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5074d9f mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe525c188 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5c53761 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe64c9973 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6cb489c kvm_gpc_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe71fe3ef kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe72793b3 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8c25ee5 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe914dda7 kvm_read_l1_tsc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9c40453 kvm_task_switch EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea57a5c9 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea609a98 kvm_handle_memory_failure EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeada679c __tracepoint_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaee83f0 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb10cf31 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb26575a __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec7e7f99 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec49671c kvm_destroy_vcpus EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedc94121 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee8e0ac9 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefbbaa18 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf056e759 kvm_wait_lapic_expire EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf103de65 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1bc06a0 kvm_load_guest_xsave_state EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf37062e0 kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3f2c8ef kvm_vcpu_update_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6365c69 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6cefb77 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf805b78d kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf83f5d59 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf89d8ac3 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6d61684 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6fcfadb kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf90ddbcf __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9f3ee52 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa6c28dc kvm_io_bus_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc4a2baa kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb9ee5c5 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc60a92d kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc9c2398 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd1134ce kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdbf1c7d kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe21049b gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe3674ae __SCK__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff1e336e kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffd5f745 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe75e23d kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff771bdc vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffdd2709 kvm_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfffe8e66 __tracepoint_kvm_write_tsc_offset EXPORT_SYMBOL_GPL crypto/af_alg 0x0231a5d3 af_alg_accept EXPORT_SYMBOL_GPL crypto/af_alg 0x04186b75 af_alg_sendpage @@ -11407,11 +11409,11 @@ EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf27f8bee rtl8366_vlan_del EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x059691de i40e_client_device_register EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x5abcd31c i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9ed996f0 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9fb7e094 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcd711330 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdfebdea3 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe543ce46 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2cec5e06 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5ac89096 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x645cc3b6 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb5cdde98 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf100e1b2 ice_add_rdma_qset EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03b7ba11 mlx4_unregister_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x046bfa97 mlx4_srq_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05e2ef17 mlx4_get_base_qpn @@ -11552,9 +11554,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f033e0 mlx5_db_alloc_node EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4860a6aa mlx5_set_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48881726 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x489adf31 mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a4cf4a6 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dc93bbc mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x516e90bd mlx5_query_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5233cc9b mlx5_frag_buf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x525ef9e9 mlx5_query_port_max_mtu @@ -11588,6 +11588,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa78ea0e0 mlx5_set_port_prio_tc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8a5eb50 mlx5_core_reserved_gids_count EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8619a8c mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbdf97a4 mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3875975 mlx5_nic_vport_unaffiliate_multiport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd06de0e8 mlx5_core_modify_hca_vport_context EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd213188d mlx5_set_port_admin_status @@ -11600,6 +11601,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6a6c721 mlx5_access_reg EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeae31216 mlx5_set_port_tc_bw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee45d0a8 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf48c833d mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf95fb699 mlx5_set_port_caps EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc9ef0d4 mlx5_query_nic_vport_node_guid EXPORT_SYMBOL_GPL drivers/net/geneve 0x18b7fcfc geneve_dev_create_fb @@ -12326,13 +12328,13 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace EXPORT_SYMBOL_GPL fs/lockd/lockd 0x087fa038 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2c679f77 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4188e80c lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4907d28b nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x725eacf2 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x69cab7ff lockd_up EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8bdca09a nlmclnt_done EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa5e99357 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb7ad16df lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd77ad161 nlmsvc_ops EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00a09595 nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01555b1d nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x027abd4c nfs_sb_active @@ -12346,14 +12348,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06abf477 nfs_check_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06cebc54 nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08d4a4e2 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098c279b nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098f4953 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c0a1078 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eab3168 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match EXPORT_SYMBOL_GPL fs/nfs/nfs 0x119ca1de nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x129a3706 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16da24d9 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e6df7e nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17c8f446 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1913bbeb __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x215bb8a7 nfs_pageio_resend @@ -12362,10 +12361,10 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x249f453c nfs_get_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b48a3c nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26d0d974 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275de4f6 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x291494d7 nfs_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a324e0a nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ae1e75a nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8fc09e nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x301cacb4 nfs_mkdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31514ef7 nfs_show_devname @@ -12389,57 +12388,51 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4208b92d nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d94f32 nfs_sb_deactive EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4382bbcd nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43f64266 __tracepoint_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44bdc610 nfs_commit_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453f17a1 nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4697324b nfs_show_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x469edcf2 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a66fd73 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ab81a78 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4be10cb2 nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ec9b206 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ee48140 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f895c86 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fcd7eee nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5130cda6 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa1ba21 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52014f85 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5297f377 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x557095d0 nfs_statfs EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56318eb7 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56d3573b put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e5827b register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57b3a7ad nfs_probe_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c77653 nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58c64c88 nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ae0f13e nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf7b18f unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ea84694 __tracepoint_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f4575af nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d6522a __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67367fe7 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67969869 __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a3905e4 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ace70b1 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e117833 nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x702788ec nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x703b5733 nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x731d54ef nfs_unlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78ce4fe3 nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7914e37c nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a5f5d0e nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac89c9b __SCK__tp_func_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b36d91f nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e69775f nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f2a5f71 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x812e677c nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x820f2dbb nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8353d7dc get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8643674c nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x872907bb nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8971f893 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cbbe8e9 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d8aeb9c nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eafa178 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eb25b8b nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f282282 nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f5b62c1 nfs_file_llseek @@ -12450,12 +12443,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92a31f1f nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x943369af nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9544e69b __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x955c14e6 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9698d266 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97b4059f nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values EXPORT_SYMBOL_GPL fs/nfs/nfs 0x992ae5db nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993124b6 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0674e3 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c06d084 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3591528 nfs_zap_acl_cache @@ -12463,29 +12455,37 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7ce7482 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9f08b49 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa578145 unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac039f04 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae271b94 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf7ed889 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafaf2707 nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb095c55c nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb19e01af nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f308ed nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ccea37 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6c73b1b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86b6ca6 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb2d3517 nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb7ce81e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe4b18c0 nfs_init_server_rpcclient EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36cdf2f nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc526c99b nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1afa965 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1bb52cd nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd38067b9 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6ac104e nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaf47769 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbc8129f nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcf00a07 __tracepoint_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdffb2384 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe25b6129 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe32cb6fd nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe408db88 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4c9f9a3 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ae56bf nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6625d9d nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe873ab79 nfs_link EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1d9ecc nfs4_label_alloc @@ -12494,6 +12494,8 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb195e99 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec076f44 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec95375a nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed8254da nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf02658a4 nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0434f1c nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf08e0348 nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6e71367 nfs_retry_commit @@ -12506,6 +12508,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x94247296 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x040bec5c __tracepoint_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07ffe94f nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b5da810 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b67e5d0 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10aaba72 pnfs_ld_write_done @@ -12525,7 +12528,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x261cf053 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27880490 __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2922c6c8 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ad73ab0 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x318528c5 nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3354df7f __traceiter_pnfs_mds_fallback_pg_init_write @@ -12560,6 +12562,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c8467d0 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6da02f2c __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f50f049 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72ff6d6e nfs4_put_deviceid_node @@ -12605,7 +12608,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbd13e1d pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbeb6e0f nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc70f419f nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc97feda0 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfa5beea __SCK__tp_func_pnfs_mds_fallback_write_pagelist @@ -12615,6 +12617,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6aa636d pnfs_ld_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb6d77c9 __tracepoint_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbb96539 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd148f8c nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0bb06c5 nfs_remove_bad_delegation EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe718a3b0 __traceiter_ff_layout_write_error @@ -12627,7 +12630,6 @@ 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 0xf99d2794 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd809009 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x18c191a0 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x662fe651 opens_in_grace @@ -12636,7 +12638,7 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4c82a6f2 nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9d12cb5a nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd36ebb2a nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xcffe1e48 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x8c6e43a3 nfsd4_ssc_init_umount_work 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 @@ -12802,13 +12804,13 @@ EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b08d051 dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d96cc88 dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19adfaeb dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x1acab7c8 dccp_setsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bc2a53c dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bdc2615 dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ed81880 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x20e49dd0 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x229877e2 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d022d50 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d99290b dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x3079bb42 dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a6a129d dccp_shutdown @@ -12894,9 +12896,9 @@ EXPORT_SYMBOL_GPL net/ife/ife 0xa2ab8432 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xbc08080c ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x24a24546 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4c2a693b esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6c840866 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x03380b46 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x79031c66 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa432a178 esp_output_tail EXPORT_SYMBOL_GPL net/ipv4/gre 0x4d1b6c7a gre_add_protocol EXPORT_SYMBOL_GPL net/ipv4/gre 0x57a84c01 gre_del_protocol EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x24a66682 inet_diag_register @@ -12907,7 +12909,7 @@ EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x92d09607 inet_diag_find_one_icsk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0c45853 inet_diag_msg_common_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd0af9158 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfd2f9b90 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfb7df7a3 inet_sk_diag_fill EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xd718092a gretap_fb_dev_create EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x47911938 arpt_alloc_initial_table EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc0079cc8 ipt_alloc_initial_table @@ -12932,9 +12934,9 @@ EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x75d112c7 tcp_vegas_init EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa1d8454e tcp_vegas_cwnd_event EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbd22da41 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5558228e esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd2a0cdfd esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdd755dd6 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb75e0f7c esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd92bfd71 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdbad0329 esp6_output_tail EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x86dcd718 ip6_tnl_rcv_ctl EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9f6c0489 ip6_tnl_encap_setup EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc0451e23 ip6_tnl_xmit_ctl @@ -13042,10 +13044,10 @@ EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb42b312 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf61a3585 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x145ec135 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9c339d3e ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaaab39ef unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xded269b5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2c4f0f76 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x75f264d3 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa3056fbf register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb854ab4f ip_vs_conn_in_get_proto EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x020482c2 nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6f25c3a8 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x988ea99c nf_conncount_init @@ -13402,10 +13404,10 @@ EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc9e18780 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0450dea9 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x33488dd3 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x642aebfa sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x8ae4ac93 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x17303416 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1c47659c sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5f63cca5 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x62e958dc sctp_get_sctp_info EXPORT_SYMBOL_GPL net/smc/smc 0x05a4c011 smc_unhash_sk EXPORT_SYMBOL_GPL net/smc/smc 0x43e98346 smcd_handle_event EXPORT_SYMBOL_GPL net/smc/smc 0x5c181b40 smc_proto @@ -13417,285 +13419,285 @@ EXPORT_SYMBOL_GPL net/smc/smc 0x95dfce79 smcd_handle_irq EXPORT_SYMBOL_GPL net/smc/smc 0xd221f48f 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 0x46286c16 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 0x521238f2 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xaf484414 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcd946ea8 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4c7054af svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x823d38fe gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9a3f14c3 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa0dfafb4 gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00bb1904 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00fcd3d9 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02905e22 rpc_num_bc_slots EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0393ddc3 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b216e6 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04de45f6 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f0f0db svc_rqst_alloc 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 0x07d5db2f xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07fec1d9 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x083e07ee xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08be07e2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08fc916d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b3e6a3 rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a54544e xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1e11a4 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b95b005 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd8c925 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c104f97 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea09164 svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eb74a5d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f09766b xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f429195 rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f811fa1 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe2173e svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x129a9799 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f8b6c3 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1129429b xdr_stream_decode_opaque EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x135a65f9 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167a0d3d xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x169738f2 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1709908d auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173d857e xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1824ccb0 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b34df8 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a01e138 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a8e080 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ff4b32 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ff5fd8 svc_bind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0c3509 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a984737 svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac4df73 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb89abb rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce07fee rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1adb842c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b69ac75 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cba8915 xdr_write_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1de19e0a xdr_decode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5d8809 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e61a193 svc_set_num_threads EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea2d218 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eea5ba6 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f8899db xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218ffe99 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219e4e9a svc_print_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a948dd rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2493b94f xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24e2c84a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2509b40a rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251e531b xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266ce6cd svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2833192d rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285fc929 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x256fe073 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e84282 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278797f1 rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b55d9d rpc_pton EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6ebaa6 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b556231 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bf63ec6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b41f7fc xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bac2914 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d8930c3 xprt_lock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e0cae03 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e6de8c4 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1910a9 rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8b53f9 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fca17c8 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x311c95e9 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314e7618 xdr_stream_move_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f12482 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x329814cb svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33409fb2 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f8ffd1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x347f3fe6 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36a73dd7 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c95a20 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3606f836 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x361d572f xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36994b73 svc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39766a87 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38a5e09d svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e6ae35 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39f27f11 svc_fill_symlink_pathname EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a43b914 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4bc4c5 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d4533ac rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac2dd74 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be63408 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c19e707 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f02e9c5 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8ff7e8 xdr_init_decode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x406c5d56 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x425c0732 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4281aead rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fe8e541 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff03a8b xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40b67c4b rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41fe042f __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435b83ff svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x457873b8 rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45924692 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45f6eff4 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468c5f08 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f757fa rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49b3fa56 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a938ba2 rpc_count_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b386af2 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cc1db07 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e0952a9 svc_addsock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f1ee347 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f9ed687 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5121fabe svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52219acc xdr_stream_decode_opaque_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53f32cf9 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x542c0518 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545199b1 rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x553174ea cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5614ff2d xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5750859c xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e3cdc1 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5866214f xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55da20ce rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x567c5ef6 svc_print_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59695f00 sunrpc_cache_pipe_upcall_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c088740 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d8da41f rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e96fc40 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed0add0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e01f67d xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e974ba5 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed6d9d1 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed8a60e xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601a43aa svc_xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61066fc6 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x612cbe80 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x613712fc svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x622d3493 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65038855 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ab1250 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6144d465 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c2bfb6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f7476e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62fb570d rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c7e8e5 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63defde7 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6463d24c svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a7f7b6 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c5722f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66cde0e8 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x680a4fb2 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676031b9 svc_rpcbind_set_version EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681a08de sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68cea960 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d10e42 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5e8a7c rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b392d6a rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4f3608 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b936fb4 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c4c6018 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6890598d rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c2379d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbbf6f1 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef3ae98 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x701678de rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704ccb1d rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7098b412 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x709d654b xdr_reserve_space_vec EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70a0830b rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7139a4ab svc_xprt_received 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 0x75989b34 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x773685c1 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787aeaca rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787f5e57 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d6ad0b bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x790ba601 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79740cba rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x797cc687 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79af7a7a rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79b5ba09 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bb700e6 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bbb83b8 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d47a53c xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d69acda rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7aa5a7 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d8074dc rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b8c2af svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b93317 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75ae8ba2 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76559b55 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775c24dd rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79638836 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab9f2e4 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bc73d3c rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be4f0cf rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ded1023 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea7d1e6 rpc_clnt_show_stats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f59b57a sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8011e751 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a54fc8 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80de68ce xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832c935d svc_recv EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x836cb7ce rpc_mkpipe_dentry EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83d49363 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8401c80d rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84ce1466 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8545ed7b xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d3b490 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866118d5 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86cdd72e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86da8f54 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a36627 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8684b8f9 svc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a494d9 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8946b06d auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b03f64f xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b14939c svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89440e26 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a128db9 rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b89f6ff cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e25bad1 rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901013cd xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9015cd57 rpc_clnt_probe_trunked_xprts EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901a5b15 cache_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901fd27a rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91053bee rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90ef9cc3 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ce9b88 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d274e0 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x954fb341 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95c5a579 svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95fed0f2 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96384687 svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9661c8da csum_partial_copy_to_xdr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a170be svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c90163 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97bf26a8 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aa63856 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aa7a837 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b208c39 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a3a35ed xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b1c4060 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b997733 xprt_complete_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d73e0ef sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7c854c svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f90d8d9 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa099801d rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67f9bc1 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7f61e10 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8bcdcdb svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c2bc8d rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa8ad039 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab39dce4 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae3258b7 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed059ee xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3aee80 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1092bab rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa291324f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3868dcf svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a8db1c rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa55d3568 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b59a78 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b999a2 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65647a2 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e45178 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80f8343 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa859a33d svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa91052b6 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaabaed7b rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaafd6844 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca95451 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd68495 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad9fd623 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf4d947c rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff0e180 rpc_clnt_xprt_switch_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1aefab1 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2d23052 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2e6f229 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f1453b rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb284c24e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4263323 rpc_put_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb581ab0f svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7823c32 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb79835ff xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9f8ae53 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb69b1fe8 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7c148c6 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba2e6d32 auth_domain_lookup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba95ad5f svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbc1093c xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5383c6 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd147773 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf51913d svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf905ade rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb463412 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd310072 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0595878 xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0b03c21 rpc_task_release_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2135d74 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2591db0 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc39d20af svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3f0c8d0 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12726e3 svc_age_temp_xprts_now EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc496e4ce rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ceb293 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ed8df9 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc739dcb9 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8d2c3b6 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d1c64a xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc796bd5a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89d00ce svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9378136 rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e0642b xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb051847 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca41e7aa xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccc9b513 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcce29a90 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd2917f9 xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd6473f5 cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdaa0831 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2df77a svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3411ed8 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3cddd16 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd705029d svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7516f3e rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd86eb25d rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a73825 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd968189e svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9fb13d7 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda000dc5 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbddd504 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce9138b4 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf8fed71 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfcee4d6 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd01047f0 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd043797f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c1a066 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1341f58 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd158e29c rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2639582 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a5fd0d svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6fa7f6d rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7cb907d rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8856cb9 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a657c8 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfb0b52 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc497cf3 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc625dd1 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcb5a52b svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde03e653 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf28c1f9 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde298ac2 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf74c608 rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff22b1e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0681e18 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08e49d4 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c1b5d3 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0df2145 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1d51a4d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe22bb298 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24a660b unix_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33904e9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe345262a rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6147b02 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6dcc0c4 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f0be59 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe704c2c6 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7169be6 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ac2077 svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d105a9 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8fad936 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe928b086 xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d0841a xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb54121b rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9ec23a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebd444ae rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee427a5e svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee4d4c35 auth_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf09cb257 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0f879f6 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf23ab5e5 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf25c65f9 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2c6611a rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2da26ce rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6717646 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1102525 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c2a58d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf55f22f9 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5c73dbd rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf68d5704 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf705547e xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d360f0 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf862c449 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf937580f rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9a1b674 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa73a1b2 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc14771 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc00d289 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd931a15 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9f9343 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/tls/tls 0x38257af4 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x839e33bb tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xac3c3b78 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xf938a893 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf889f18e xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9188821 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd0f987c xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0aba4a rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff33a50a xprt_write_space +EXPORT_SYMBOL_GPL net/tls/tls 0x054f7cfb tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x3e64d1ae tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x410baf6e tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xfb21f90f tls_device_sk_destruct EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x06003ab1 virtio_transport_stream_rcvhiwat EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10283b33 virtio_transport_release @@ -13790,6 +13792,7 @@ 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 0x000360dd hv_ivm_hypercall EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable EXPORT_SYMBOL_GPL vmlinux 0x00233fea ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x0030719c sk_free_unlock_clone @@ -13977,6 +13980,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features EXPORT_SYMBOL_GPL vmlinux 0x06f80b36 devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x07000e37 vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0x07040480 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x0717c1a3 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x07254328 usb_bulk_msg @@ -14026,7 +14030,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x08f21345 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x090d51cb find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x09145cd3 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x091ec249 blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig @@ -14080,7 +14083,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0ab886d0 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0adbb641 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x0ae40f9f tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x0ae4e2b5 led_init_core EXPORT_SYMBOL_GPL vmlinux 0x0ae61afd switchdev_bridge_port_unoffload @@ -14156,6 +14158,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0ddcf4f7 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x0ddedc87 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x0de4d681 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release @@ -14421,7 +14424,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18f42650 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19050bf8 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x190a13ae __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x19199b9b phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0x191f144e hwspin_lock_request @@ -14451,6 +14453,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19ee0c6f gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x19fd3edb ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x19ff4304 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x1a00c2c8 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab @@ -14505,7 +14508,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c1b905d tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1c39fdd9 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x1c444bba sock_map_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 @@ -14529,6 +14531,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1cc8908f pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x1cc91619 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x1cc91dff devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1cd44f98 hyperv_paravisor_present EXPORT_SYMBOL_GPL vmlinux 0x1cd554e3 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral EXPORT_SYMBOL_GPL vmlinux 0x1cf64ea0 ip_tunnel_dellink @@ -14546,7 +14549,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1d3b8882 dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x1d3b891f fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x1d506f95 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x1d59e1c9 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x1d667871 fscrypt_parse_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x1d746c5d acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x1d8becdf __ip_tunnel_change_mtu @@ -14564,6 +14566,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id EXPORT_SYMBOL_GPL vmlinux 0x1e380aa0 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x1e3817a3 sched_numa_hop_mask +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88de register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse EXPORT_SYMBOL_GPL vmlinux 0x1e49ff6a gpiod_direction_input @@ -14571,7 +14574,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print EXPORT_SYMBOL_GPL vmlinux 0x1e57c3f6 nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5e9977 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x1e6279ec strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1e78af0a xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e7f2a7e mbox_flush EXPORT_SYMBOL_GPL vmlinux 0x1e838e8e tpm_tis_remove @@ -14596,7 +14601,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1f11b202 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x1f273422 vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0x1f2d6c5c nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x1f2fea59 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x1f30852c __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x1f337de9 __vmbus_driver_register EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit @@ -14654,6 +14658,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy EXPORT_SYMBOL_GPL vmlinux 0x212761f3 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x212d6674 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x21440513 usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0x21449728 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0x2159c4e5 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x215a170b crypto_stats_ahash_final @@ -14717,7 +14722,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x23b1278e pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep EXPORT_SYMBOL_GPL vmlinux 0x23e577ba crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x23ff2fdb sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x2404b871 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0x2414714e devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const @@ -14735,7 +14739,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x24b28b0d do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x24c1f1a4 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x24c2f641 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x24c345dc __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x24c3c424 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x24d05807 gpiod_get_raw_value_cansleep @@ -14791,7 +14794,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x26cd1fa9 acpi_match_device EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any EXPORT_SYMBOL_GPL vmlinux 0x26ce312a ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x26d12694 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x26d7001b pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x26eb80fa vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier @@ -14862,6 +14864,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2954a726 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x29748ff6 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x299f0aae ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x29b93685 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x29cd95fb devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x29e95322 dw_pcie_wait_for_link @@ -14891,6 +14894,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b0345ce ip6_input EXPORT_SYMBOL_GPL vmlinux 0x2b216b61 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x2b25e911 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x2b2d1d9c xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x2b31185f debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x2b44536d dev_pm_qos_update_user_latency_tolerance @@ -14903,6 +14907,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b7d730b nvme_wait_reset EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x2ba62f0f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2bb8310a tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x2bb9a2e9 nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x2bcdc38b virtio_require_restricted_mem_acc EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs @@ -14932,7 +14937,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2ca5d3e1 hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ca89fe7 snp_issue_guest_request EXPORT_SYMBOL_GPL vmlinux 0x2cab95ad blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x2cd9aa66 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x2cddb8b8 sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x2ce919a3 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x2ce9f43e devm_regulator_put @@ -15021,6 +15025,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x30770f2e edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0x308d086a nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30db2b84 hv_ivm_msr_read EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu EXPORT_SYMBOL_GPL vmlinux 0x30e6a21f debugfs_create_regset32 @@ -15057,7 +15062,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x322ee93f wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x324a1d91 nvme_quiesce_admin_queue EXPORT_SYMBOL_GPL vmlinux 0x324c4ef5 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x324d23c2 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x3278f149 __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x327a2800 blkcg_root_css @@ -15084,7 +15088,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x330f6209 simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x33180e67 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3321263e bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x3323d8e5 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x33643336 devm_release_action @@ -15172,6 +15175,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x36ba4e32 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x36c75b4e context_tracking EXPORT_SYMBOL_GPL vmlinux 0x36db16f2 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x36e36dfc tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x36e84fdf inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x36fc44fd device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request @@ -15238,6 +15242,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x390c5ab0 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x3912618a ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x392b4faf xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x393a358c sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x393c1d6e pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x3959c940 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait @@ -15284,6 +15289,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic EXPORT_SYMBOL_GPL vmlinux 0x3afb0db6 ip_tunnel_rcv EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b083af4 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x3b200d6a regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x3b25f5bb pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x3b25fca5 usb_find_alt_setting @@ -15406,6 +15412,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3f530b5f devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x3f6e5b18 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x3f77791f pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x3f7ebdac xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f87bdd0 extcon_get_state @@ -15421,6 +15428,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x400932eb fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4015e805 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x401795da __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x401b3e88 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x401f1aeb regulator_set_pull_down_regmap @@ -15510,6 +15518,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x42dde045 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x42e4a5fb dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x42f14bcd fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x42f3a565 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x4303ba17 pci_p2pmem_alloc_sgl EXPORT_SYMBOL_GPL vmlinux 0x430c1169 iocb_bio_iopoll @@ -15547,6 +15556,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x442d49a7 acpi_dev_state_d0 EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x4432ebc3 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4442cfdb mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x446745a3 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x4474d59d __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested @@ -15576,7 +15586,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4562d500 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x4584168a acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x458c875d bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x4592acca spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x45978755 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages @@ -15652,7 +15661,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x482452b5 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4824b482 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire EXPORT_SYMBOL_GPL vmlinux 0x483a5ab1 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x4864a24e regmap_bulk_write @@ -15768,6 +15776,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4cf9349d io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x4cf9f7e0 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d01c35b mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x4d0677aa pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x4d0e171e fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x4d1d75b7 led_trigger_set @@ -15874,6 +15883,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x50fb8d31 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x5111b1d6 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x511381d0 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x511da01d percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x513c70d3 irq_gc_set_wake @@ -15886,7 +15896,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x518e9b61 devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x51a92bdc regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x51b1fba8 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x51c88a69 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x51cab376 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x51db6756 setup_udp_tunnel_sock @@ -15976,6 +15985,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x55118404 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x55135a7c kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x551c0419 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x552049be xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x5523a822 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data @@ -15993,7 +16003,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55d59817 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x55db2ad5 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x55dd426f sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x55ee0e27 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f7f50e skcipher_walk_complete @@ -16012,10 +16021,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x563982df regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56567feb tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x5666def0 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current EXPORT_SYMBOL_GPL vmlinux 0x569a05a5 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x56a0cd26 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x56b5821f unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x56d89e76 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x56df36e4 elv_register @@ -16067,6 +16076,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x58814575 pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0x5883ec09 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x5889dfb4 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x589b656d sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x58ac748a event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x58aee4a3 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x58b0d49e ata_pio_need_iordy @@ -16110,7 +16120,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0x59f95331 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x5a171cb4 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle @@ -16132,7 +16141,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ac022ab ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x5ac3abc5 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x5ade417e handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ae16c2f sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x5aebdc00 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b54078f regmap_field_bulk_free @@ -16224,6 +16232,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5f2ed485 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f37fe65 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x5f3e4cd3 __tracepoint_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x5f582e85 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x5f5f619b efivars_kobject @@ -16270,6 +16279,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf EXPORT_SYMBOL_GPL vmlinux 0x60fecc79 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x60fed082 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x61083ec8 sock_map_destroy 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 @@ -16281,7 +16291,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x617d9a34 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x618a7014 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x6193aca2 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource @@ -16295,7 +16304,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x61c2908e dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x61dd61a1 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f8118d clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x61fd643a dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 EXPORT_SYMBOL_GPL vmlinux 0x6208cd7b xdp_rxq_info_unused @@ -16389,7 +16397,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x65a769ad serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x65bd40b9 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x65c48b37 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x65bef809 usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0x65c7d676 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x65cb24a9 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0x65cb5d3e relay_buf_full @@ -16415,7 +16423,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x66758501 isa_register_driver EXPORT_SYMBOL_GPL vmlinux 0x66766aa5 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0x667934fc regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x66831255 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x668bdbf8 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x66af1cfb crypto_register_ahashes @@ -16440,6 +16447,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x679480da sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x679e3a53 nvme_stop_keep_alive EXPORT_SYMBOL_GPL vmlinux 0x67af68db usb_hcd_pci_probe @@ -16519,7 +16527,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ad30b81 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL vmlinux 0x6afc8e29 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read EXPORT_SYMBOL_GPL vmlinux 0x6b20bfdc pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get @@ -16606,6 +16613,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ddce0c9 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x6dee306b irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0x6dfd6919 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6dfef956 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0x6e05aea6 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x6e07f812 task_active_pid_ns @@ -16706,7 +16714,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x717e0ec3 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x7184d98c fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x7187ff9c xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0x718809ea ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister @@ -16738,7 +16745,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x72e9bb9f raw_abort EXPORT_SYMBOL_GPL vmlinux 0x72f11717 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x72fcc87f xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x73046ed7 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x73108110 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x731aa6cc nf_queue @@ -16807,6 +16813,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x757f6c78 __nvme_check_ready EXPORT_SYMBOL_GPL vmlinux 0x7582ec2a clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x758658f0 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x7587fae0 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x75903633 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x759636dd netlink_remove_tap @@ -16844,14 +16851,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x76ddcced kobject_move EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x77124fbc nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x7717e62b udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x773a429f ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x7765cdd5 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x776aee13 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x7774726c usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x777de4a8 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x777f8546 rdev_set_badblocks @@ -16873,6 +16878,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table EXPORT_SYMBOL_GPL vmlinux 0x780989d1 nvme_auth_dhgroup_id EXPORT_SYMBOL_GPL vmlinux 0x781c42b2 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x781fa453 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x78226d20 fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x7827b883 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt @@ -16966,7 +16972,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad17a77 x86_vector_domain EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7af072da clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x7afa8a70 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7b0ac9d8 ata_sas_port_start @@ -17090,6 +17095,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7f1f2654 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x7f36c115 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x7f409063 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7f55b76f tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x7f66ab99 usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x7f761c4c __inode_attach_wb @@ -17153,6 +17159,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x81de4650 register_ftrace_direct_multi EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81e9737f icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x81ecdff7 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x8200cfb2 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget @@ -17252,6 +17259,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x85e7f079 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial EXPORT_SYMBOL_GPL vmlinux 0x85f05fcc gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x85f996ff sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write EXPORT_SYMBOL_GPL vmlinux 0x86171392 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal @@ -17279,6 +17287,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86be5a3a fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86ca12ef mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x86e65b92 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue @@ -17309,6 +17318,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x87fe7f10 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x8812bc14 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x8816d121 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8829e081 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x882a7e1b of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x883520a4 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0x88384777 device_create_managed_software_node @@ -17369,6 +17379,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a6aaaa4 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x8a6be9d5 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x8a79f93e mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control EXPORT_SYMBOL_GPL vmlinux 0x8a835ce8 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put @@ -17398,7 +17409,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8b65c02a component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0x8b678c27 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x8b89ec04 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp @@ -17442,7 +17452,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8ca81c47 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x8cc37df7 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x8cc6c0a1 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x8cc79fca xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x8ced87ae dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x8d05833d __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x8d1b0606 pci_find_host_bridge @@ -17457,6 +17466,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d76deb6 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d99bf1a xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0x8d9aa29f rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x8da11572 srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x8da4425d icc_nodes_remove @@ -17494,7 +17504,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints EXPORT_SYMBOL_GPL vmlinux 0x8f3eb44f gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8f553265 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f72c7b8 fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x8f7476d2 transport_setup_device @@ -17620,7 +17629,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9432cef6 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x94435f0f xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash @@ -17643,10 +17651,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x951218fd devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951b561a sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x952cf040 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x9533372a clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954ae879 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x95591e33 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x955c3eca tty_get_pgrp @@ -17799,10 +17807,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9af8d1b6 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x9afa4454 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x9b0da665 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x9b1ff35a tick_nohz_dep_clear_task EXPORT_SYMBOL_GPL vmlinux 0x9b200f09 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x9b3e4511 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9b4a0a66 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x9b536ede udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x9b5425e8 spi_async EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b5eef61 skb_scrub_packet @@ -17822,6 +17831,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui EXPORT_SYMBOL_GPL vmlinux 0x9c08a6c8 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x9c295b32 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x9c2b8cbe dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x9c2c9dc7 d_same_name EXPORT_SYMBOL_GPL vmlinux 0x9c36edca pci_stop_and_remove_bus_device_locked @@ -17832,6 +17842,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9c8d4f5d mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location +EXPORT_SYMBOL_GPL vmlinux 0x9ca73bd7 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x9ca9fcfa skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x9cb6d782 wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier @@ -17908,7 +17919,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x9fe2c1d9 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa000ba07 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xa00c102d acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0xa0172838 acpi_dev_ready_for_enumeration EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc @@ -17923,7 +17933,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa084cf6d fscrypt_context_for_new_inode EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0xa0b99f50 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xa0bbab7a clk_register EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages @@ -17931,7 +17940,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa0dcf4ad pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f1e700 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xa0ff426d dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0xa10ad77c clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xa10d5afc devm_regulator_get_exclusive @@ -17963,7 +17971,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa21b0993 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val EXPORT_SYMBOL_GPL vmlinux 0xa2241e90 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xa243f04f sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xa244c2e3 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xa245bd78 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0xa248430b devm_gpio_request @@ -17985,7 +17992,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2d3b2d2 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xa2d3deb2 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xa2dacc5d auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xa2dc3858 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xa2de3e90 usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0xa2deff03 __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers @@ -18063,11 +18069,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xa60c21a7 usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0xa6155f8d acpi_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xa616c3a6 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xa63b765e register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xa63bedf3 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xa63e77eb bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xa6462af3 amd_iommu_is_attach_deferred EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa65a6c7d register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xa65b883d pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xa65ee6cf devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0xa67a30ba class_compat_remove_link @@ -18175,7 +18181,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xaabde17d fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xaaea7a29 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xaaef7428 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0xaaef8533 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0xab027da1 ping_rcv @@ -18207,9 +18212,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xac2d733f md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xac2f100a regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xac30b40a bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xac3a7d7a sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xac3e1503 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xac71a2d7 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xac79ba63 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0xac845afd scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xac931190 of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xacb3b526 regulator_suspend_disable @@ -18304,7 +18309,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xafb577ac init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0xafb67e7a bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xafc9c207 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xafd183ea unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xafd83c4e nvme_unquiesce_io_queues EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string EXPORT_SYMBOL_GPL vmlinux 0xafeb64b4 udp4_hwcsum @@ -18329,10 +18333,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xb09b966b dm_hold EXPORT_SYMBOL_GPL vmlinux 0xb0a143d9 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0xb0b13b0c wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xb0b3baf2 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xb0b63136 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d2cd88 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xb0d4cf59 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xb0deb933 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xb0f9379a pci_device_group @@ -18396,17 +18400,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xb32bdcf7 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0xb34c404d tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xb351d48a usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xb355671b hv_ivm_msr_write EXPORT_SYMBOL_GPL vmlinux 0xb35f0f62 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xb3647712 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0xb371d910 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xb377256c fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xb39ca725 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xb3a52af8 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xb3d027b9 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xb3e2aab0 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0xb3ed6e8a thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xb3f2f148 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb4229006 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xb42af78b nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0xb42b6c92 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0xb42e1f07 tty_ldisc_deref @@ -18505,7 +18510,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb82c3b0e clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0xb838786d devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0xb83cfd4a device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout @@ -18647,7 +18651,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory EXPORT_SYMBOL_GPL vmlinux 0xbd7cd53a xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xbd858515 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xbd8a0042 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xbd8b4444 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xbd91d467 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle @@ -18675,6 +18678,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature EXPORT_SYMBOL_GPL vmlinux 0xbe750801 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xbe7b8564 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xbe91ce3c nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbe9de494 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit @@ -18703,6 +18707,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xbf9bbf25 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xbfa437ec devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xbfb4b7dd sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xbfb4ec2f tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp @@ -18747,6 +18752,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc18f22ed vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xc197418a screen_pos EXPORT_SYMBOL_GPL vmlinux 0xc1991459 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xc1b0cf97 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xc1bfe9b4 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xc1cce634 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first @@ -18761,7 +18767,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc260f7d6 iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc26a9cac iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xc26e1c04 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xc272e0d0 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0xc281d040 vmbus_sendpacket_mpb_desc EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler @@ -18783,6 +18788,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc3351091 ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc341c945 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc342198f bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xc3483d28 nvme_start_ctrl EXPORT_SYMBOL_GPL vmlinux 0xc35f6c9d usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0xc36f902b bpf_prog_put @@ -18869,6 +18875,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc6488de7 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0xc64aaa20 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xc64b0165 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc64b43bd sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0xc6596a12 pci_epc_mem_free_addr @@ -18957,12 +18964,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc94036bd __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95bb217 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc982e5ff dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0xc985a6af devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc986b5d0 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xc98855fb __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xc98dc937 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0xc996406c ip6_route_output_flags @@ -18973,7 +18978,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9bb9ff2 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9d9d828 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xc9dd8a91 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xc9e25974 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu @@ -19070,13 +19074,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xcd85d945 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9563af sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu EXPORT_SYMBOL_GPL vmlinux 0xcda2d561 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xcdac32d8 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xcdb5e972 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbf995f sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdd9edbb inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency @@ -19170,6 +19174,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd16c3089 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0xd18a9ad7 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xd1916743 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xd1a1e78a sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xd1a5c092 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xd1ac9474 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0xd1c2123b regmap_raw_write @@ -19187,6 +19192,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd23f1570 hv_tdx_hypercall_fast EXPORT_SYMBOL_GPL vmlinux 0xd24bb17d elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write @@ -19296,6 +19302,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd6580455 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xd6662aca phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xd67353f0 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget EXPORT_SYMBOL_GPL vmlinux 0xd6851e83 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xd69f5b3c vp_legacy_get_queue_enable @@ -19412,6 +19419,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page EXPORT_SYMBOL_GPL vmlinux 0xdb35554f fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xdb4a16af mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xdb4c5795 dev_pm_opp_sync_regulators EXPORT_SYMBOL_GPL vmlinux 0xdb4e7cc0 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xdb50a59e pci_epc_set_msix @@ -19426,7 +19434,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdb9d150d trace_array_put EXPORT_SYMBOL_GPL vmlinux 0xdb9f00d7 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdba23118 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xdbaa7b73 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0xdbceffd2 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbdae6f3 dev_pm_qos_hide_latency_limit @@ -19456,6 +19463,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdca68054 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0xdcbc7cc8 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xdcbeab17 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xdcd17cee mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xdce53206 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0xdce7aa41 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err @@ -19463,7 +19471,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdcfc7f0a sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd1541bb acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xdd208834 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xdd2554df posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xdd26c1d3 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0xdd2c6326 skb_segment @@ -19483,6 +19490,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdddc98d1 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xdde7e8cb blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0xddf857cb crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xde08e565 unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0xde0d8123 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0xde1a5873 ip_tunnel_change_mtu @@ -19652,7 +19660,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4ca1761 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0xe4cb24a6 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0xe4d4bea1 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xe4d9faac register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xe4e37b3c __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state EXPORT_SYMBOL_GPL vmlinux 0xe4e8e875 device_property_match_string @@ -19717,7 +19724,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe7576269 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xe7630a99 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe770b699 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xe77b806c fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit @@ -19778,6 +19784,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xea17ac8f acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0xea18cf69 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0xea2257b2 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xea2a1d6c sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xea30ebb6 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free @@ -19811,10 +19818,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xeb468d8c sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xeb649434 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0xeb68f7e4 device_move -EXPORT_SYMBOL_GPL vmlinux 0xeb80713c sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0xeb85c3a4 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xeb8d36e6 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xeb8dd419 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xeb9b4657 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xebb0f8c2 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xebb26eed __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms @@ -19863,12 +19870,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xed67999e __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0xed8555f4 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue -EXPORT_SYMBOL_GPL vmlinux 0xed8cefd8 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xed8f50de inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr EXPORT_SYMBOL_GPL vmlinux 0xed98609e __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xeda85ceb __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xedae5165 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xedc187a3 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0xedc316e5 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier @@ -19879,7 +19884,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xee10a56d __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 EXPORT_SYMBOL_GPL vmlinux 0xee186559 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0xee239068 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xee2c286d devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xee2c6e1a ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0xee2edb78 ata_bmdma_qc_prep @@ -19912,6 +19916,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xeef42280 ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xef0b3052 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xef10e299 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request @@ -19954,7 +19959,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf095788d pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0xf095f90d buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0xf09990c2 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xf0a1a923 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0xf0b6a699 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xf0ccf2d4 nvme_auth_dhgroup_kpp EXPORT_SYMBOL_GPL vmlinux 0xf0e36d53 strp_process @@ -19964,6 +19968,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf11025a5 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xf126884d cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0xf1351c26 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf13ec3d4 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xf140430e inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get @@ -20072,6 +20077,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf501cb89 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xf50cd1f2 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xf5117275 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xf52073dc xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xf523fc45 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xf524ad25 mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0xf53a164d __platform_register_drivers @@ -20090,7 +20096,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5ad55b3 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf5b52d5c hv_vp_assist_page EXPORT_SYMBOL_GPL vmlinux 0xf5bbb630 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xf5bdd3bb sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xf5bfe3ee usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xf5c16be2 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0xf5df795a dma_map_sgtable @@ -20202,6 +20207,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0xfa2af296 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xfa2d6714 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xfa30b1ee register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule @@ -20289,7 +20295,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xfd68d88d component_del EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd7daf11 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xfd8c088e vmbus_set_sc_create_callback EXPORT_SYMBOL_GPL vmlinux 0xfd941da5 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0xfda3f97f __SCK__tp_func_br_fdb_update @@ -20298,6 +20303,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfda960c6 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0xfdbd43e5 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc9eb17 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xfdda419b __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0xfde6740e debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xfde91b8c fork_usermode_driver @@ -20329,6 +20335,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfee63ff0 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read EXPORT_SYMBOL_GPL vmlinux 0xfef70da0 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xff009034 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt EXPORT_SYMBOL_GPL vmlinux 0xff0b46b0 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xff13b51f transport_configure_device @@ -20374,9 +20381,9 @@ I915_GVT EXPORT_SYMBOL_GPL 0x0f269268 i915_gem_object_alloc drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x12bbf783 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x307d2f00 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x45f3f12f i915_request_create drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x507a1673 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x5099ea76 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x57bff67f shmem_pin_map drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x6264da41 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x688d2b3e shmem_unpin_map drivers/gpu/drm/i915/i915 diff -u linux-azure-6.2-6.2.0/debian.azure-6.2/abi/arm64/azure linux-azure-6.2-6.2.0/debian.azure-6.2/abi/arm64/azure --- linux-azure-6.2-6.2.0/debian.azure-6.2/abi/arm64/azure +++ linux-azure-6.2-6.2.0/debian.azure-6.2/abi/arm64/azure @@ -29,72 +29,72 @@ CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2cea9cc4 crypto_cipher_encrypt_one vmlinux CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x941480b9 crypto_cipher_setkey vmlinux CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd151bec3 crypto_cipher_decrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x0025423a to_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x01073e69 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x03cb0a11 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x03681b22 cxl_decoder_add_locked drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x05fd3e8a to_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x0ddcc1d4 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1c30283c cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x20be65cb set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x274de03a cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x123c128c set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1c69a39d cxl_await_media_ready drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2a7de5bc devm_cxl_register_pci_bus drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2d7fedaf cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x32a286f9 to_cxl_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux CXL EXPORT_SYMBOL_GPL 0x3402efe5 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3759e264 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3a904141 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x3f533227 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x415188e3 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x42037b61 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x4bc34ccf cxl_rcrb_to_component drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4ce3d145 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x4f1be569 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x563c6965 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5d416671 devm_cxl_add_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x640d7555 devm_cxl_setup_hdm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x658199d7 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x68c9c56e devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6b5649c1 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6f161b93 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x68e90b33 cxl_dpa_debug drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x72c2378a find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7bfd01c9 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7f0ebd9a cxl_hb_modulo drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x7faa2c5d to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8063fa6e cxl_dev_state_identify drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux CXL EXPORT_SYMBOL_GPL 0x88e5982e is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8c0c1cb9 cxl_decoder_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x9323c015 cxl_driver_unregister drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x96ccd2e5 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x978185f0 cxl_dev_state_create drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x991f7f59 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9a27d9ab devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9e29c150 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa05649ad is_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa0815925 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa43de9e5 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa5cfaf81 cxl_probe_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa9d897bc cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xaa3cea60 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xac656d61 to_cxl_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xadf149fe is_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xaf80565e to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb27238cc cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb55acd0d cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb8842476 cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xba82e3c6 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc042fe93 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb148930b cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb67bf5c9 cxl_hdm_decode_init drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc43aff00 is_cxl_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc4f73fdc devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc9587bde read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcb9cc298 cxl_mem_find_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xcc376f15 cxl_find_regblock drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xccd605f6 cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcdc764fc clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcd14fd44 cxl_endpoint_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xd2472c0f is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe37c49cb cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd8079aaa cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdc03a248 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xde7bc892 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdefe29ff cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3240ccf cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3d11767 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3f074cc cxl_dev_state_identify drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe9ba9f5b cxl_probe_component_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xeaaa8d82 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf0e246ed cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xeb620abc clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf056b2a8 to_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf1964b3c cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5f943eb to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf30c1e4f cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf98ce224 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfb13a678 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfb469894 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core DMA_BUF EXPORT_SYMBOL_GPL 0x0634e1c9 dma_buf_detach vmlinux DMA_BUF EXPORT_SYMBOL_GPL 0x0838b0a7 dma_buf_vmap vmlinux DMA_BUF EXPORT_SYMBOL_GPL 0x0b9c63a6 dma_buf_vunmap_unlocked vmlinux @@ -208,7 +208,7 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xceb0248f pi_read_block EXPORT_SYMBOL drivers/block/paride/paride 0xf4e724e1 pi_release EXPORT_SYMBOL drivers/block/paride/paride 0xfb54cde5 paride_unregister -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x77f0e324 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x89bf9b90 btbcm_patchram EXPORT_SYMBOL drivers/bluetooth/btrsi 0x57279eca rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x58745141 mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN @@ -607,6 +607,7 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b23b5d drm_sysfs_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x37fe46be drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392a2a7e __drmm_mutex_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a479a0 drm_edid_read EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d913d7 drm_crtc_init_with_planes @@ -731,11 +732,11 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x801a359b drm_plane_force_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x8122c9b2 __drm_atomic_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8214c82d drmm_mutex_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x84443e69 drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x846d5193 drm_gem_lru_move_tail EXPORT_SYMBOL drivers/gpu/drm/drm 0x849e8359 drm_plane_create_blend_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x857a0d07 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8644eb65 drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e95cf2 drm_bridge_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0x8813daac drm_crtc_vblank_waitqueue EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a22379 drm_property_create_bool @@ -846,7 +847,6 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3948ff __drmm_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xbee70a24 drm_modeset_lock_single_interruptible EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0bc83a6 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ed1f92 drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26805f5 drm_add_modes_noedid EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36006f8 drm_atomic_set_fb_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xc456268a drm_release @@ -2902,47 +2902,47 @@ EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6d16682c __traceiter_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6e8b75d2 __traceiter_otx2_msg_alloc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9c249ea3 otx2_mbox_regions_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9d45d365 otx2_mbox_destroy EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xde07972d otx2_mbox_regions_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xeaed9202 otx2_mbox_alloc_msg_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfb731b17 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0976bfec otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0c5798ad mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0c9cb5e4 otx2_get_max_mtu EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0d785dfc otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x14ee141e mbox_handler_msix_offset EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1a6607d7 otx2_ioctl -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2174bc04 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x261e363a otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x22b5826c mbox_handler_nix_txsch_alloc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2a43e05f otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4e591ed1 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2a512529 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2a9a87dc otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x31cba3cf otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x345ac285 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x40f24f0e otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4af00751 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x594c3d00 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5a44ef56 otx2_txschq_config EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5e19a419 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x656e1d8d otx2vf_mcam_flow_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x68bb776e otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6fc2420a otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x712e0538 mbox_handler_nix_bp_enable EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x728d4651 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7411d3c7 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84e15aec otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x88303d35 otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8d9a07f4 otx2_smq_flush EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x968b5cbc otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9ad1a168 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9d538686 otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9da17930 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9def2eab otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9fb28789 cn10k_lmtst_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa11bced7 otx2_sq_append_skb EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa41e761c otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa4d92c1f otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaaa574fe otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaecce88d otx2_tc_alloc_ent_bitmap EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb1b28ba2 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb386e325 mbox_handler_nix_txsch_alloc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb6ed47ee otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba6c89bd otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbd863d9c otx2_config_pause_frm EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc02af176 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc4a0b7b5 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd5f5ffea otx2_nix_config_bp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd8781ac8 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdd1856e0 otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe46210a3 otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe6a459cc otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xca41ab38 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd00aa2fd otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe3596c33 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf86f8312 otx2_shutdown_tc EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb9b722c9 prestera_device_unregister EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe9564182 prestera_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09140ce3 mlx4_test_interrupt @@ -2991,24 +2991,23 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3bf7b92 mlx4_query_diag_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8b594a2 mlx4_get_slave_pkey_gid_tbl_len EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c16f9c mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0230fe0c mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b7372a mlx5_fpga_mem_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08d0ebf5 mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0addb231 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b57c203 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ceb61a8 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d337f32 mlx5_core_modify_cq_moderation EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed47cab mlx5_debug_qp_add EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x112d727e mlx5_cmd_exec_cb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x121e8551 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12e3581c mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x127a467c mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16fce0d5 mlx5_get_flow_namespace EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1840233e mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f8ad57 mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a3dbd15 mlx5_rl_add_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b3b3a57 mlx5_rdma_rn_get_params EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bfb5fc3 mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dfee5d2 mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e0a7c8b mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ecc09fc mlx5_core_destroy_mkey @@ -3018,139 +3017,140 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2269b0fd mlx5_create_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b91c80 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24cd9c41 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27982ec1 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29b584b5 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2acb078a mlx5_eswitch_vport_rep EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aef9fdf mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b9b296f mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cffb59e mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f1de3de mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fd0fd87 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ff93e65 mlx5_lag_get_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d6aec0 mlx5_fs_remove_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36bc17b9 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37d87abb mlx5_lag_query_cong_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a093d2a mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a199be2 mlx5_core_dealloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ad5c38c mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c95d604 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3db32c74 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40048404 mlx5_lag_get_slave_port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d08751 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472f87eb mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x461840a8 mlx5_eswitch_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47573e80 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x475ee41a mlx5_eswitch_reg_c1_loopback_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48570737 mlx5_core_create_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x498d5986 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a79095e mlx5_comp_irq_get_affinity_mask EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c93fe61 mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d8b3904 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x518ae25d mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x500f60e3 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x527d8a84 mlx5_vf_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53722894 mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53afa93c mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54a9b976 mlx5_eq_create_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5676d84f mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f3185e mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5778007f mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58abb047 mlx5_fpga_sbu_conn_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b8b0c8e mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b94e764 mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bcf3fe9 mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d1bd1a1 mlx5_core_create_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d9ff263 mlx5_rl_remove_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f1d5f7c mlx5_cmd_cleanup_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 0x61e9a3a5 mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62c0f41b mlx5_core_query_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x631fac3c mlx5_fc_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64ca045d mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67fbe238 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6881427f __traceiter_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68ad31c7 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x690dabdb mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69873820 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a302887 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a86838c mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c10dd7a mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6db16203 mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e2f9311 mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f8d6716 mlx5_qp_debugfs_cleanup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f91f842 mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bb8a00 mlx5_rsc_dump_cmd_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72c64bee mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x748b7aec mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7899dddf mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79219abb mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78f68aae mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a88d641 __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ca23e13 mlx5_core_create_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f37c11e mlx5_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f6fccf9 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8179218e mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81896f97 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82733a2e mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a078f9 mlx5_query_ib_port_oper EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4c949d mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a97aacc mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9048edee mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92c2c01d mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9611d4a7 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9629214e 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 0x97729efa mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8aec17 mlx5_core_attach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa177aec7 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ff91fdd mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1abbf84 mlx5_eswitch_vport_rep EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa432bd20 mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6dddd95 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa701b8bc mlx5_lag_get_num_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa825057e mlx5_core_modify_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9ec79db mlx5_rl_add_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabacf520 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab92af7e mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae044b8d mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c317f9 mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1e1f5ba mlx5_core_destroy_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3fafd3c mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb61c641f mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6879152 mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb79dac7f mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb901664c mlx5_cmd_init_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba049aa2 mlx5_core_destroy_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba9ec80a mlx5_lag_get_roce_netdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc1dc99d mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc2f9014 mlx5_eswitch_vport_match_metadata_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc9096e3 mlx5_core_create_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd9c4d6a mlx5_core_detach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe9f7dd1 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf0cdd5b mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc00f40b2 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc38839c0 mlx5_eswitch_add_send_to_vport_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb197e20 mlx5_mpfs_add_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce43655e mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfb7bf07 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc1264c2 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce5158e4 mlx5_lag_get_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd10c7c80 mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5202ccb mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd61b2dcd mlx5_eswitch_get_vport_metadata_for_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda02e39b mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9896dae mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdca9fa79 mlx5_core_query_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcf728e1 mlx5_qp_debugfs_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddcdd3e2 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe12c642d mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe205c372 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe27b2d12 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf49e43e mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6666609 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7787b10 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7a3b6f6 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7429db4 mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf048e01d mlx5_mpfs_del_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf282c244 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf713d899 mlx5_lag_query_cong_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b1a796 __traceiter_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf92601b3 mlx5_core_destroy_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc5b742a mlx5_fpga_sbu_conn_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfed3a99b mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff8ecd57 mlx5_eq_create_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up @@ -3408,14 +3408,14 @@ EXPORT_SYMBOL drivers/net/ppp/pppox 0xc48aec7b pppox_unbind_sock EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto EXPORT_SYMBOL drivers/net/sungem_phy 0x7456372c sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x58e14d24 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x691910f2 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x6f34c40d team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x785700d5 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8016c693 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8a2d92f8 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xa277f70e team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xff8b1fa0 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x4249225c team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x5daf6465 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x75f31a06 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x92867ce3 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x9cf446fa team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xdf52fd58 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xf8b9a96b team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfcf4c9fd team_modeop_port_change_dev_addr EXPORT_SYMBOL drivers/net/usb/usbnet 0x63df0f6b usbnet_device_suggests_idle EXPORT_SYMBOL drivers/net/usb/usbnet 0x7adf8a64 usbnet_link_change EXPORT_SYMBOL drivers/net/usb/usbnet 0xcdb49f8d usbnet_manage_power @@ -3987,75 +3987,75 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf30bc194 rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf57c4a16 rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffc43ffe rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x926cbf19 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x0facc894 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x798cc5ab rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x964eae95 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x005400ce rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0094197b rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x061a76cc rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0835c7ec rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cf3b202 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e6312dc rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13efc9fe rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e66174c rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24a3b89b rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30915412 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x32ac6901 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x48492008 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xd5895785 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xa3a95aba rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x4c6b3184 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02053932 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02f05c04 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x073792ff rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07b6340a rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0bcdb9e7 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d2fcbcd rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x117bfc84 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12912f3c rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22657775 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28ad0ff4 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a2968ce rtw_phy_pwrtrack_need_iqk EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x355643ba rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35c84e49 rtw_phy_cfg_mac EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x39bf0d4e rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a82ca02 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b3621d1 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3cf66938 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3d4100ef rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f76f75c rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3faf9357 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x425e0fee rtw_rx_stats EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4809f71b rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x486a70f7 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4a3542b7 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48e2f83b rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4a3e9378 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b9aa9bc rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e16feab rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e6c358e rtw_phy_load_tables EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x559cf132 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55f72f44 rtw_chip_info_setup EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x584b0faf rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5aa5ad1b __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dc64e50 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x651accd1 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x769211ef rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78733bd8 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x824c0798 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x826c8168 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86f4275d rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9552230f rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5904ee17 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5aa212a2 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dec1426 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f840877 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x613f7dfb rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67d321e6 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e248390 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x741e6dd0 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77c4fd32 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79db2954 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79f0d494 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ff496bc rtw_fw_c2h_cmd_rx_irqsafe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x988c368e rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99e0c68d rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a864804 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a94395c rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b5470e8 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d36b33b rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa64405e4 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8d387c7 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbae4d852 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc1c90c48 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc44e6a7b rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc63398c2 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9b48591 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf128b98 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc147f4c rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc2bfa02 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdef02e44 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf3a8dd7 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe22684d4 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe60d2485 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6d95d79 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf03019ab rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99977ebd rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a4d4d2d rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b2a5050 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa697233f rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7d52048 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab02af03 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0574bfa rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbfd56502 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc10c906c rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2571d9f rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4ad183f rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcab2cf1d rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcfba282f rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd314ec59 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3177893 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd430d0ae rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7469236 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd922ac2d rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd96c0365 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdbe3b4a4 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde66024c rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf0b28f3 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4713743 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xefa26ad0 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xefd2036b check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf5aa2c12 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf821de80 rtw_phy_pwrtrack_need_lck EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbe75d71 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc148b17 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd823539 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc87044d rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff32face rtw_bf_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3b4e676c rtw_pci_remove EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3d1f7570 rtw_pci_shutdown EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x489fb6a0 rtw_pm_ops @@ -4065,6 +4065,7 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x3093542e rtw8852a_chip_info EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x470d86de rtw8852b_chip_info EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xdca8cab1 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0aae2b56 rtw89_mac_size EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0abc8169 rtw89_alloc_ieee80211_hw EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0af05c76 rtw89_mac_enable_bb_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147f0040 rtw89_mac_set_err_status @@ -4097,7 +4098,6 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67306fa4 rtw89_mac_cfg_gnt_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a5a8e7c rtw89_phy_read_rf_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ab22c76 rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6fc40abf rtw89_core_fill_txdesc_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x750004d3 rtw89_mac_disable_bb_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x799296b6 rtw89_core_unregister @@ -5637,22 +5637,22 @@ EXPORT_SYMBOL net/mac802154/mac802154 0xc607ea0f ieee802154_xmit_error EXPORT_SYMBOL net/mac802154/mac802154 0xdddf87a2 ieee802154_xmit_complete EXPORT_SYMBOL net/mac802154/mac802154 0xe364593b ieee802154_free_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29a34492 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x48f381e1 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x65c6e668 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x752965cc ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7b1679b4 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7f58b777 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x85bd7119 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93896e99 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x99e03a13 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa5fdb23c ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba1ad4f1 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd1afa022 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c0bef52 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3325ebb7 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x378941a2 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x42073797 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4db2a278 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ce42677 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x676bc843 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ca7403f ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70e4c6a8 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8154de5f ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9df5b755 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf14b728 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0b9bb6a register_ip_vs_app_inc EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8daca40 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc35d6fd register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xecd1ad26 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe71239dd unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2c6ba10 ip_vs_proto_data_get EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc613dca5 nf_ct_ext_add @@ -5772,25 +5772,25 @@ EXPORT_SYMBOL net/phonet/phonet 0xb840e125 pn_sock_unhash EXPORT_SYMBOL net/phonet/phonet 0xc72c692e pn_sock_get_port EXPORT_SYMBOL net/phonet/phonet 0xec756f5a phonet_proto_register -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0f00cd7b rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x03111371 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x03fcfb54 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x044a45a8 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x09534188 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x16d25bce rxrpc_kernel_end_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x18414142 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x207474c8 rxrpc_kernel_abort_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x474100c1 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x623dc5c4 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a4e4652 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7640365a rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x79b002f3 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5f6e03e6 rxrpc_kernel_get_epoch EXPORT_SYMBOL net/rxrpc/rxrpc 0x8197f7c9 rxrpc_sock_set_security_keyring EXPORT_SYMBOL net/rxrpc/rxrpc 0x83f208bc rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa39ae385 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x97ca3a6a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa4c7f52a rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc160d691 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc368e2c1 rxrpc_kernel_begin_call EXPORT_SYMBOL net/rxrpc/rxrpc 0xc984e964 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd1182203 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd2c85f97 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xddc1875f rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe32e57e3 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe6340d51 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf20ed95b rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc7a6dc8 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd0b7a9e2 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd74c28db rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe6e06361 rxrpc_kernel_abort_call EXPORT_SYMBOL net/sctp/sctp 0x4a06b859 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg @@ -5804,17 +5804,17 @@ EXPORT_SYMBOL net/smc/smc 0xe3c95e2f __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x16f2679f gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x343f84c6 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5e44808b gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1be02466 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4e97f118 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x72d5a4e2 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x4e4fbc74 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x5b80f06b tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xbab04289 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xc40de934 tipc_dump_start -EXPORT_SYMBOL net/tls/tls 0x542c2d34 tls_get_record +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xce0b0bde gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xce6b2fe4 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf24da22f gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x424ac7a8 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8b4ef423 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xcb427956 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x5950fe4f tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x799712e5 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x7e96c4c4 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x852f715c tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x988511dd tls_get_record EXPORT_SYMBOL net/wireless/cfg80211 0x0172f9fa cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x05d6dcf1 wdev_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create @@ -5960,6 +5960,7 @@ EXPORT_SYMBOL vmlinux 0x00488bb8 make_kuid EXPORT_SYMBOL vmlinux 0x005b943f regset_get_alloc EXPORT_SYMBOL vmlinux 0x00619645 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x0071db47 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x0085eb02 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x00b2ef92 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode @@ -6284,6 +6285,7 @@ EXPORT_SYMBOL vmlinux 0x0dd465d1 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x0dd5a7a9 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x0dd8c3f1 trace_event_printf +EXPORT_SYMBOL vmlinux 0x0dda57da xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x0ddff990 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x0de3814f vmbus_sendpacket EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 @@ -6473,7 +6475,6 @@ EXPORT_SYMBOL vmlinux 0x170573f6 serio_rescan EXPORT_SYMBOL vmlinux 0x170baaf9 iov_iter_kvec EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1730df7c xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x1737ae99 mmc_retune_pause EXPORT_SYMBOL vmlinux 0x1742bf64 inet_add_offload EXPORT_SYMBOL vmlinux 0x1745b482 md_write_start @@ -6490,6 +6491,7 @@ EXPORT_SYMBOL vmlinux 0x17ea93dc gro_cells_receive EXPORT_SYMBOL vmlinux 0x17eb7c64 tty_kref_put EXPORT_SYMBOL vmlinux 0x17f12795 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x181d711e xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x182e2371 register_fib_notifier EXPORT_SYMBOL vmlinux 0x1831ef49 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace @@ -6522,7 +6524,6 @@ EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create EXPORT_SYMBOL vmlinux 0x195445a2 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x19634060 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x1967827a xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x1968f37d mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x197e311d __nd_driver_register EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit @@ -6641,6 +6642,7 @@ EXPORT_SYMBOL vmlinux 0x1f8900ff jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x1f8b1d0d mr_dump EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbfdcfa xfrm_lookup EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag EXPORT_SYMBOL vmlinux 0x1fdf6f9c __d_drop EXPORT_SYMBOL vmlinux 0x1fe07f09 generic_shutdown_super @@ -6650,7 +6652,6 @@ EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any EXPORT_SYMBOL vmlinux 0x200bcb76 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x2019b9a9 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x201a3db7 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x202032f7 param_ops_bool EXPORT_SYMBOL vmlinux 0x2045d752 dev_uc_sync EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable @@ -6695,6 +6696,7 @@ EXPORT_SYMBOL vmlinux 0x2255fee4 input_unregister_device EXPORT_SYMBOL vmlinux 0x2256fd2a ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x2259164e key_validate +EXPORT_SYMBOL vmlinux 0x225b1630 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x22629bfd fb_validate_mode EXPORT_SYMBOL vmlinux 0x22663735 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x227042c0 dev_disable_lro @@ -6956,7 +6958,6 @@ EXPORT_SYMBOL vmlinux 0x2d9899cf netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr EXPORT_SYMBOL vmlinux 0x2d9ec3da input_copy_abs -EXPORT_SYMBOL vmlinux 0x2da28bc8 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x2daa82e5 dget_parent EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs EXPORT_SYMBOL vmlinux 0x2dd960b9 mmc_set_blocklen @@ -7038,7 +7039,6 @@ EXPORT_SYMBOL vmlinux 0x31580ceb get_user_pages_remote EXPORT_SYMBOL vmlinux 0x315b7672 fb_prepare_logo EXPORT_SYMBOL vmlinux 0x316144da dev_get_stats -EXPORT_SYMBOL vmlinux 0x3182ded8 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x31842efe xen_free_unpopulated_pages EXPORT_SYMBOL vmlinux 0x318b6a41 __ps2_command EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring @@ -7103,6 +7103,7 @@ EXPORT_SYMBOL vmlinux 0x341fec7a scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x34220eca phy_do_ioctl EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34410c73 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x34597a32 kmalloc_caches EXPORT_SYMBOL vmlinux 0x3465121e inc_nlink EXPORT_SYMBOL vmlinux 0x346cbe91 inet_csk_reqsk_queue_drop_and_put @@ -7142,12 +7143,12 @@ EXPORT_SYMBOL vmlinux 0x359bdd54 dcache_dir_close EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 EXPORT_SYMBOL vmlinux 0x35cb9ba2 __break_lease -EXPORT_SYMBOL vmlinux 0x35dc1755 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x35eb482e vme_init_bridge EXPORT_SYMBOL vmlinux 0x35f90a98 dm_table_get_md EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask EXPORT_SYMBOL vmlinux 0x361c9b4c mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x3622a8ed tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x363de5d4 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 @@ -7468,9 +7469,7 @@ EXPORT_SYMBOL vmlinux 0x4432a0ff get_tree_nodev EXPORT_SYMBOL vmlinux 0x4436ea08 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444f233a xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x44612b44 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x44621d8f sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq EXPORT_SYMBOL vmlinux 0x449a928e dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp @@ -7523,7 +7522,6 @@ EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance EXPORT_SYMBOL vmlinux 0x46c66521 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x46c9868b sk_net_capable -EXPORT_SYMBOL vmlinux 0x46f7d2a1 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset @@ -7630,6 +7628,7 @@ EXPORT_SYMBOL vmlinux 0x4b13ad1d xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x4b31a000 blk_execute_rq EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b47bba4 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg EXPORT_SYMBOL vmlinux 0x4b7b7303 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x4b829c63 migrate_vma_finalize @@ -7644,6 +7643,7 @@ EXPORT_SYMBOL vmlinux 0x4be974d2 vme_register_error_handler EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bfc9e54 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x4bff1ee4 vlan_vid_del EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance EXPORT_SYMBOL vmlinux 0x4c28cb40 sock_init_data_uid @@ -7653,6 +7653,7 @@ EXPORT_SYMBOL vmlinux 0x4c818158 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x4c848b2d pci_write_config_dword EXPORT_SYMBOL vmlinux 0x4c8bf666 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x4c9120ca inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x4c973083 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x4ca4ec12 unpin_user_page EXPORT_SYMBOL vmlinux 0x4cc2f272 padata_free @@ -7667,12 +7668,12 @@ EXPORT_SYMBOL vmlinux 0x4d243713 filemap_alloc_folio EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info EXPORT_SYMBOL vmlinux 0x4d2e6406 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x4d31f948 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d3f7286 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x4d40ee95 dev_add_pack EXPORT_SYMBOL vmlinux 0x4d429905 fc_host_fpin_rcv EXPORT_SYMBOL vmlinux 0x4d63dd8c security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d78f480 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d79f9a9 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x4d8140ef dec_zone_page_state EXPORT_SYMBOL vmlinux 0x4d8eac88 vfs_mknod @@ -7681,7 +7682,6 @@ EXPORT_SYMBOL vmlinux 0x4d9f32d4 __mdiobus_read EXPORT_SYMBOL vmlinux 0x4da4037b security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4da84e96 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence EXPORT_SYMBOL vmlinux 0x4dcb4e69 logfc EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo @@ -7857,6 +7857,7 @@ EXPORT_SYMBOL vmlinux 0x54fc4642 uart_match_port EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x550e23ed xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color EXPORT_SYMBOL vmlinux 0x55267005 fb_firmware_edid EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested @@ -7888,7 +7889,6 @@ EXPORT_SYMBOL vmlinux 0x5681b282 get_tree_single EXPORT_SYMBOL vmlinux 0x569055c3 param_get_charp EXPORT_SYMBOL vmlinux 0x56af80ba tso_build_hdr -EXPORT_SYMBOL vmlinux 0x56b0d03e xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x56b0d47a vmap EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c4a0f2 inet_getname @@ -8039,6 +8039,7 @@ EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e44ecb9 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x5e53107f iov_iter_pipe EXPORT_SYMBOL vmlinux 0x5e5b5c5c sock_init_data EXPORT_SYMBOL vmlinux 0x5e5f161c mmc_of_parse @@ -8067,6 +8068,7 @@ EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0x5f020d6a __seq_open_private EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0dd33a xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x5f229f19 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable @@ -8213,6 +8215,7 @@ EXPORT_SYMBOL vmlinux 0x65278340 user_path_create EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654434d4 inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0x654449c3 memset16 EXPORT_SYMBOL vmlinux 0x654cd56f udp_gro_receive EXPORT_SYMBOL vmlinux 0x65593854 serio_unregister_port @@ -8224,7 +8227,6 @@ EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65b6f6ad xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x65ba735b __stack_chk_fail EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier @@ -8300,7 +8302,6 @@ EXPORT_SYMBOL vmlinux 0x68f47073 __scm_destroy EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x68fe50ec __lock_buffer -EXPORT_SYMBOL vmlinux 0x69028267 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0x690d007d phy_print_status EXPORT_SYMBOL vmlinux 0x690debac __sock_create @@ -8432,6 +8433,7 @@ EXPORT_SYMBOL vmlinux 0x6f35c824 blk_sync_queue EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource EXPORT_SYMBOL vmlinux 0x6f41c545 simple_empty +EXPORT_SYMBOL vmlinux 0x6f495160 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address EXPORT_SYMBOL vmlinux 0x6f7acf35 mipi_dsi_dcs_get_display_brightness_large @@ -8476,6 +8478,7 @@ EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x715d8124 tcp_connect EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717c3eb7 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x7186b9b0 tegra_dfll_unregister EXPORT_SYMBOL vmlinux 0x71996f7e __ip_select_ident EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy @@ -8739,7 +8742,6 @@ EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert EXPORT_SYMBOL vmlinux 0x7dd58674 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x7de4f89b xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x7df30d22 security_unix_may_send EXPORT_SYMBOL vmlinux 0x7e03f4d5 generic_file_llseek EXPORT_SYMBOL vmlinux 0x7e0783f7 phy_set_max_speed @@ -8780,6 +8782,7 @@ EXPORT_SYMBOL vmlinux 0x7fe302bc pci_request_region EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node EXPORT_SYMBOL vmlinux 0x7fefdcfb input_reset_device +EXPORT_SYMBOL vmlinux 0x7ff0a95a xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x7ff6d7be sock_no_mmap EXPORT_SYMBOL vmlinux 0x7ff768a2 of_get_cpu_state_node EXPORT_SYMBOL vmlinux 0x7ffd3c29 tcf_qevent_validate_change @@ -8945,6 +8948,7 @@ EXPORT_SYMBOL vmlinux 0x8730677e blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x875e9d03 pcie_get_mps EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x876b196d xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x877cab6e flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq EXPORT_SYMBOL vmlinux 0x878ebf34 tcp_md5_hash_skb_data @@ -8970,6 +8974,7 @@ EXPORT_SYMBOL vmlinux 0x882a0d14 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x883e3835 clkdev_drop EXPORT_SYMBOL vmlinux 0x8852f0bd generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x88618594 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x8879f322 simple_pin_fs EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 @@ -9214,7 +9219,6 @@ EXPORT_SYMBOL vmlinux 0x92be02dc tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x92c10b44 skb_pull_data EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x92d08a8e inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92dde2b0 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout @@ -9224,6 +9228,7 @@ EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get EXPORT_SYMBOL vmlinux 0x932613a7 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x932d9feb do_SAK +EXPORT_SYMBOL vmlinux 0x933f9905 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x935b3ee8 md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x935bfee3 netlink_net_capable EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid @@ -9332,7 +9337,6 @@ EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 EXPORT_SYMBOL vmlinux 0x9859a11f sk_mc_loop EXPORT_SYMBOL vmlinux 0x98642ce9 bdi_unregister -EXPORT_SYMBOL vmlinux 0x986ed9b3 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x9878aa43 phy_connect_direct EXPORT_SYMBOL vmlinux 0x988e643c kill_block_super EXPORT_SYMBOL vmlinux 0x989289d9 sched_autogroup_create_attach @@ -9663,7 +9667,6 @@ EXPORT_SYMBOL vmlinux 0xa70ee3ad d_add EXPORT_SYMBOL vmlinux 0xa70fb188 tcp_ioctl EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71c440a xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order EXPORT_SYMBOL vmlinux 0xa7207f1c __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock @@ -9787,7 +9790,6 @@ EXPORT_SYMBOL vmlinux 0xabcd69a9 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xabf6b9b6 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xac0203ae xfrm_policy_byid EXPORT_SYMBOL vmlinux 0xac14eacd xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xac158717 __scsi_execute EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier @@ -9806,6 +9808,7 @@ EXPORT_SYMBOL vmlinux 0xac94ee2d nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0xac9d6524 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xac9fb181 param_set_copystring +EXPORT_SYMBOL vmlinux 0xaca46533 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu EXPORT_SYMBOL vmlinux 0xacb354a3 pfifo_qdisc_ops @@ -9836,7 +9839,6 @@ EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xad9c3e89 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xada78019 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final EXPORT_SYMBOL vmlinux 0xadb721a6 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long @@ -9872,6 +9874,7 @@ EXPORT_SYMBOL vmlinux 0xaed7b962 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0xaee9df3e ihold EXPORT_SYMBOL vmlinux 0xaf039a88 proc_symlink +EXPORT_SYMBOL vmlinux 0xaf1824a6 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xaf31119f page_symlink EXPORT_SYMBOL vmlinux 0xaf31beed tcf_classify EXPORT_SYMBOL vmlinux 0xaf340bae i2c_del_adapter @@ -9906,6 +9909,7 @@ EXPORT_SYMBOL vmlinux 0xb032b9b1 of_translate_address EXPORT_SYMBOL vmlinux 0xb04192f9 mount_bdev EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb060a380 pci_read_config_byte EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state @@ -9989,7 +9993,6 @@ EXPORT_SYMBOL vmlinux 0xb3c60ce2 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xb3d18401 max8998_bulk_write EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d53b91 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xb3da5baa update_region EXPORT_SYMBOL vmlinux 0xb3ec0107 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run @@ -10074,6 +10077,7 @@ EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb78f7534 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xb798206c xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xb7a95954 mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states EXPORT_SYMBOL vmlinux 0xb7b9c5e6 seq_write @@ -10126,7 +10130,6 @@ EXPORT_SYMBOL vmlinux 0xb9a416ce vm_insert_pages EXPORT_SYMBOL vmlinux 0xb9a604af tso_build_data EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9bbf864 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xb9c13811 flow_rule_match_meta EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9f63d34 jbd2_journal_stop @@ -10160,7 +10163,6 @@ EXPORT_SYMBOL vmlinux 0xbb27616a bio_copy_data_iter EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb827096 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xbb850708 param_set_int EXPORT_SYMBOL vmlinux 0xbb872b69 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock @@ -10396,7 +10398,6 @@ EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6cf9957 zero_fill_bio EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6e1dd00 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc6f7dfec devm_clk_get_optional @@ -10553,7 +10554,6 @@ EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake EXPORT_SYMBOL vmlinux 0xce2d6410 vlan_vid_add EXPORT_SYMBOL vmlinux 0xce31d55e rtnl_unicast -EXPORT_SYMBOL vmlinux 0xce3e5996 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0xce442429 tty_hangup EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r @@ -10610,6 +10610,7 @@ EXPORT_SYMBOL vmlinux 0xd0671bb2 register_shrinker EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive EXPORT_SYMBOL vmlinux 0xd078f9d9 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xd07f5285 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xd07f96dd flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0xd0816c06 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0xd083a49c security_inode_getsecctx @@ -10711,6 +10712,7 @@ EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd48530ed __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xd49d221c skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xd49d82c5 __aperture_remove_legacy_vga_devices EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam EXPORT_SYMBOL vmlinux 0xd4a8f054 generic_writepages EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain @@ -10937,8 +10939,6 @@ EXPORT_SYMBOL vmlinux 0xde2c9217 scmd_printk EXPORT_SYMBOL vmlinux 0xde43555a param_get_bool EXPORT_SYMBOL vmlinux 0xde47831f blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde61fd09 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xde67419e sg_split EXPORT_SYMBOL vmlinux 0xde6c56cb udp_seq_start EXPORT_SYMBOL vmlinux 0xde80afae tcf_exts_change @@ -11037,6 +11037,7 @@ EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up EXPORT_SYMBOL vmlinux 0xe299912f call_fib_notifiers EXPORT_SYMBOL vmlinux 0xe29e3dbb blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xe2a5ea97 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xe2aff85a inet_sendmsg EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp EXPORT_SYMBOL vmlinux 0xe2d6d997 netlink_ns_capable @@ -11052,6 +11053,7 @@ EXPORT_SYMBOL vmlinux 0xe38fbeb2 ip6_xmit EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xe3c50391 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xe3c6324d netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xe3cc8d6d max8998_bulk_read EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region @@ -11222,6 +11224,7 @@ EXPORT_SYMBOL vmlinux 0xeb98c14c set_page_dirty EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint EXPORT_SYMBOL vmlinux 0xebab873b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xebc0da71 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0xebc3cd5d phy_advertise_supported EXPORT_SYMBOL vmlinux 0xebc8ff53 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point @@ -11258,6 +11261,7 @@ EXPORT_SYMBOL vmlinux 0xede0a655 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0xedf9f811 f_setown EXPORT_SYMBOL vmlinux 0xedffc85c jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xee0143d8 neigh_lookup EXPORT_SYMBOL vmlinux 0xee193352 fc_vport_terminate EXPORT_SYMBOL vmlinux 0xee1de35c tcf_qevent_init @@ -11274,6 +11278,7 @@ EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9febb4 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeeaeebed of_clk_get EXPORT_SYMBOL vmlinux 0xeeb64894 get_ipc_ns_exported @@ -11342,6 +11347,7 @@ EXPORT_SYMBOL vmlinux 0xf1fa1a64 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in EXPORT_SYMBOL vmlinux 0xf251d8ac scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf2524049 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier EXPORT_SYMBOL vmlinux 0xf27fecbd secpath_set @@ -11429,7 +11435,6 @@ EXPORT_SYMBOL vmlinux 0xf693da51 dev_set_alias EXPORT_SYMBOL vmlinux 0xf6abf867 inode_to_bdi EXPORT_SYMBOL vmlinux 0xf6b80abd scsi_device_resume -EXPORT_SYMBOL vmlinux 0xf6b84540 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xf6c040ab __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xf6cee001 __nla_put_nohdr EXPORT_SYMBOL vmlinux 0xf6ceed65 vme_irq_free @@ -11460,7 +11465,6 @@ EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf82f4754 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key EXPORT_SYMBOL vmlinux 0xf84c7e18 release_pages EXPORT_SYMBOL vmlinux 0xf85c72d8 devm_gen_pool_create @@ -11483,7 +11487,6 @@ EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt EXPORT_SYMBOL vmlinux 0xf94df11b devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf955f67a xfrm_lookup EXPORT_SYMBOL vmlinux 0xf956cec4 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next @@ -11561,7 +11564,6 @@ EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown EXPORT_SYMBOL vmlinux 0xfc55b3fb phy_device_free EXPORT_SYMBOL vmlinux 0xfc66261f stream_open -EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xfc755235 noop_qdisc EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset EXPORT_SYMBOL vmlinux 0xfc8abba1 of_get_next_parent @@ -11834,14 +11836,14 @@ EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8fab69f bcma_chipco_regctl_maskset EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf46c8d93 bcma_core_pci_power_save EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6e17d12 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x330d7621 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7bc932fd btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x877474bd btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xae2d08e5 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb8f01127 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc788407a btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcecc8ab9 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfa26b65b btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x22b42e1a btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2a2acd53 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7007df88 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xab40ab84 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb9a5c12c btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd07902c6 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf1f37701 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfb7c82a1 btbcm_check_bdaddr EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x02f2cb14 btintel_check_bdaddr EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1618ebc3 btintel_read_boot_params EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b8dc2dd btintel_download_firmware @@ -12337,10 +12339,10 @@ EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x04a8c701 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x2ab19873 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x5c5de831 ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x79096755 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x81d0699a ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x3eba69a0 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x53a359fb ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x60022e95 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x986ec65d ffa_device_unregister EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x1fefde08 get_scpi_ops EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0xb600bc1f mtk_adsp_ipc_send EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done @@ -14546,15 +14548,15 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe53a5fe9 fun_serv_stop EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x664ae1ad i40e_client_device_unregister EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc546764c i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2fbaf9cb ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x84d1d314 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc1a7598d ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xccc71b08 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf31006b7 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x118800d2 otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x78c7da20 otx2_ptp_tstamp2time -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xbc4cb1cd otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xf7c31a86 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x161a2cf0 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4a7e4b1c ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x84bac28d ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb2150ce8 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc54cbab6 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x5c9fe4e0 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xbddaf353 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd0f904b4 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd13a2da4 otx2_ptp_clock_index EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x016848df mlx4_buf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x070a0302 mlx4_qp_reserve_range EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ba9c269 mlx4_flow_detach @@ -14685,6 +14687,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23ccdf70 mlx5_query_hca_vport_context EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ce1b325 mlx5_modify_port_ets_rate_limit EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eb9a3ec mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x385cd405 mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44bd6149 mlx5_set_port_caps EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x465adc4d mlx5_query_port_ptys EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cb0c0d6 mlx5_query_module_eeprom_by_page @@ -14703,7 +14706,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6941fa98 mlx5_ipsec_device_caps EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7524a89e mlx5_query_port_max_mtu EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x773e1748 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a4cbbdd mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77c4b3b3 mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b0b7f83 mlx5_query_module_eeprom EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cdde24a mlx5_frag_buf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e34db88 mlx5_set_port_prio_tc @@ -14725,7 +14728,6 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae0e00b4 mlx5_query_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0b83852 mlx5_query_hca_vport_node_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb132394b mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba8e45ad mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc6ca3e8 mlx5_modify_nic_vport_mac_address EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc29b45ed mlx5_query_mac_address EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc696edfc mlx5_access_reg @@ -15803,9 +15805,9 @@ EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7c7c29d9 devm_reboot_mode_register EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xcf7b5cae devm_reboot_mode_unregister EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe3167c30 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x133a2d76 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x55f5681d bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa996326b bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5aaf1fad bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x659a6e26 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd842c7b1 bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x44cc5bd3 pcf50633_mbc_get_status EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7951148a pcf50633_mbc_get_usb_online_status EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x95fe0e08 pcf50633_mbc_usb_curlim_set @@ -17018,36 +17020,36 @@ 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 0xe10bd946 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0ac01dab nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0d6e8031 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x06225bc6 nlmsvc_ops EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3270e919 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5ba58066 lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7571fa4f nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x88d75407 lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x97f83970 nlmclnt_proc EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb2ec9150 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7c8af11 lockd_up EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01ab4137 nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0303fe50 nfs_instantiate EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04b9e275 nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0543b5c5 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b011446 nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ccccdb2 nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ce709c3 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7fdb32 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f5372ed nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fab11d1 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a7e81c nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11b7f259 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12503197 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1311df64 nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1395ad17 nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14c73bcf nfs_commitdata_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1684a61c nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17040eab nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aad5fe4 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x197281ac nfs_probe_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e54e2be nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21efe7b4 unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x236dfb01 nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2379c9c1 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25852a15 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle @@ -17055,38 +17057,39 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a7f00bd nfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c9eaa84 nfs_revalidate_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x353364ee nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35c0ca76 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x373ee36c nfs_probe_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3829caf2 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39f73dd2 nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c2cf664 nfs_file_mmap EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d1420b1 __traceiter_nfs_fsync_exit 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 0x40f733a4 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x419c3be7 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41c42278 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x495c1b57 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a55cc61 nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a5e1fcd nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4beeb3f1 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dbbbe07 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e158d66 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport EXPORT_SYMBOL_GPL fs/nfs/nfs 0x527ecdd8 nfs_flock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53934c7d nfs_dreq_bytes_left EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54362721 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x550f025d nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5526bbc4 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57fe2888 nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59899283 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a7c7f9b nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ae6edcb nfs_invalidate_atime EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e0ef2fe nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0x604f6628 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66ebb87d nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6832a1ec nfs_init_server_rpcclient EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6aa8034d nfs_sops EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b2ebd7b nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c15befe nfs_rename @@ -17097,21 +17100,22 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f4b27e7 __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x705d9c12 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70fcd64a nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7156c1ca nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x721202f6 unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72794b93 nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x743c520c nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77a80662 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78b4eb28 nfs_sb_deactive EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aae676c nfs_clear_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7acb24c5 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c1792f9 nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c842a80 nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e6de57d nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa8fb0a nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fd0930c nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x801fc14f nfs_post_op_update_inode_force_wcc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80595e1d nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0x835e65e6 nfs_access_add_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84be3367 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85c604b0 nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85fc1c92 nfs_link EXPORT_SYMBOL_GPL fs/nfs/nfs 0x877b0be3 nfs_fhget @@ -17121,32 +17125,31 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9613cb32 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9657809b nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97d3b364 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x982f7a4d nfs_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ab4e25f nfs_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b911a47 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c6bae0e nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f66f9bc nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa459326a nfs_pageio_reset_read_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa51cd8a6 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa77c6880 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa782f4bf nfs_statfs EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7a77e10 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8ba7c34 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9dd77b4 nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab387a7 nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac3d630a nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5250b7a nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6bb9292 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9300695 nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb98710d2 nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9e53153 nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba37f843 nfs_do_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb7dd32d nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc42a1b5 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcd5fe6f nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbda35c56 nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe8ea846 nfs_mknod EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfc466b3 nfs4_dentry_operations @@ -17158,6 +17161,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5b21c21 nfs_clear_verifier_delegated EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcccabf7e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0629431 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd24d3a71 nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5611b16 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6fea38c nfs_access_zap_cache @@ -17168,12 +17172,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9f687f3 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb2f635d nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc5612cb nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbe9d9c5 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcc5963e nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfe289a1 nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe163a3f9 nfs_sb_active EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e59104 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe33215a4 nfs_init_server_rpcclient EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe638c03b nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70e597b get_nfs_open_context @@ -17182,13 +17185,12 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebe80e77 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebeb9e00 nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec96ec1c __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0e83a6 nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf00cceac nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf26e9c98 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2dce686 nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfae1767e nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdf73b42 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfecf18a7 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfefe5456 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffd5a228 nfs_unlink @@ -17196,6 +17198,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00721e03 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05aa921f pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08ab6e22 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ec0d0b8 __traceiter_pnfs_mds_fallback_pg_init_write @@ -17275,11 +17278,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6682afa pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1aa6b8d nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc569218b nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc62ee3cd __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc71152a8 pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc757c83d pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7f96154 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaef8eed pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf6ff561 nfs4_mark_deviceid_unavailable @@ -17287,11 +17290,10 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd287e95c pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1fafce0 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe35d42d0 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5b549d3 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe67d2fcf pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe80eb1c1 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9de5bf7 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed75d6d1 nfs4_proc_getdeviceinfo @@ -17312,7 +17314,7 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4efe205e nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6f60e687 nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa5b7629c nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x4180b89e nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x1fbc4bc5 nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b3296e9 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions @@ -17463,7 +17465,6 @@ EXPORT_SYMBOL_GPL net/core/failover 0xfee639c1 failover_unregister EXPORT_SYMBOL_GPL net/dccp/dccp 0x00057c0b dccp_setsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x11e3f0c5 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x13a65747 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d83c8f2 dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x241f945a dccp_make_response @@ -17502,6 +17503,7 @@ EXPORT_SYMBOL_GPL net/dccp/dccp 0xeafff509 dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0xf31263e4 dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0xf868c76b dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf93ccc63 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1c2632c4 dccp_v4_connect EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2f3937c3 dccp_v4_do_rcv EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x37d50c03 dccp_v4_send_check @@ -17557,16 +17559,16 @@ 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 0x07b9024b esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x532ad385 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd9fee116 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0e00edb6 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x57c7f9c0 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7ee015d8 esp_output_head EXPORT_SYMBOL_GPL net/ipv4/gre 0x314740f2 gre_del_protocol EXPORT_SYMBOL_GPL net/ipv4/gre 0x5c294536 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x237d3bd2 inet_sk_diag_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2ad61b3c inet_diag_find_one_icsk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d967e17 inet_diag_dump_icsk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4f8f768d inet_diag_register EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fac4b29 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8bea6227 inet_sk_diag_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9beaffd6 inet_diag_dump_one_icsk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xba398639 inet_diag_msg_common_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe2881be3 inet_diag_unregister @@ -17620,9 +17622,9 @@ EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa2d4b162 setup_udp_tunnel_sock EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xad486827 udp_tunnel_push_rx_port EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc2d1da05 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x34847e08 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdfdd06a0 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf06642cc esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2140ab51 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x87704e72 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdb3d4552 esp6_output_head EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6832014c ip6_tnl_encap_setup EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd55c8264 ip6_tnl_rcv_ctl EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe224bfee ip6_tnl_xmit_ctl @@ -17732,10 +17734,10 @@ EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf0881a6e ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfdcd44ce ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1543e560 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4cc2ff59 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4cd98360 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x87332561 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x715b46ba ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbe1c5a7a unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe1510608 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe9eb8aa7 register_ip_vs_pe EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x31d8d493 nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5eb3d6a1 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x792a6e1e nf_conncount_init @@ -18091,10 +18093,10 @@ EXPORT_SYMBOL_GPL net/sched/sch_pie 0xcea8b0ec pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x412854da sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x77529f25 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x9b4a6659 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc40850d3 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0e2842df sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1bed137d sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa0595888 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xce326642 sctp_get_sctp_info EXPORT_SYMBOL_GPL net/smc/smc 0x02354b57 smc_unhash_sk EXPORT_SYMBOL_GPL net/smc/smc 0x2e72b316 smcd_alloc_dev EXPORT_SYMBOL_GPL net/smc/smc 0x4d5e77a8 smc_hash_sk @@ -18105,286 +18107,286 @@ EXPORT_SYMBOL_GPL net/smc/smc 0x99775071 smcd_handle_irq EXPORT_SYMBOL_GPL net/smc/smc 0x9ee7f137 smc_proto6 EXPORT_SYMBOL_GPL net/smc/smc 0xd40ea2f4 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x235355a8 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3390266e 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 0x45e6fdfe 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 0x6f2aaea6 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x97429b00 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb123c073 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 0xf7f31743 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00b0c072 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010288ae xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x016026a7 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e4ebf2 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf877b980 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00dc2a7a xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x016e0fc3 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0198c61b __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01b038cd rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01cf1174 svc_xprt_copy_addrs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x025494a6 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0381d1fc unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x030ee26e rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b74864 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b8b746 rpcauth_init_cred 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 0x06fafe67 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07777fcb rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0884ce5e svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ac243f svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0973d590 __xdr_commit_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a930268 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b26581d svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d08e0f3 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b70a6e0 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4e1bfc rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cea64dc xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d8c05af csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8d793c svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14463677 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15acd496 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16184552 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1640cdde svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d4a08a rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17bd2c6a xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1302f8 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce562e9 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e5d4c6c rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f798d70 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fcf344d xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10104cff xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10b2eced svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10b7c327 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11f58e8d svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17254cfb svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b0a2ad rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a91ffc xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x192177ad svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19315341 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19855b8a rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0d0016 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d580133 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1df17260 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d5071f9 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d834475 xprt_free_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5637af rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e765371 bc_svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eaf67ec cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee2d8e8 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e9583d xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x249b40f6 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24c87b8f bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24ffe4ac rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2541b48e xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26c14e36 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2842d728 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fdcb527 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x200cd798 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243f445d xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x246be0b7 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x247e1626 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x247f387d auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f5e0a8 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24fa7d25 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25aa031c xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25c021fa xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2671bba7 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26930945 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2851ac98 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x296a9fd6 rpc_wake_up_queued_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2995df46 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29bb6c84 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d339a4 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ccb9bc5 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d097461 xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec3dce0 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f7cc38f svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c9da73 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed04ed2 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3006df7b rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3098f973 xdr_inline_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c26d14 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3313f51d xprt_reserve_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f716cf rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34b50340 rpc_set_connect_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c9745e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3612c658 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36209b42 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36984816 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36d68c44 xprt_reserve_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38bd0cef xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39de1f73 xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6610ab rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b63e235 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4e473f svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c790e11 svc_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d228a2c sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e294133 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f2c87ed rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da9d03e svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e9528c4 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f622839 xprt_wake_up_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fbfef7f rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa45dce rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ffea4e0 sunrpc_init_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40cdb062 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4111dc1b rpc_clone_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41ffcdad xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x434c6aab xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x442f0489 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d8f1ef rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42152b4a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430b8a9f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43a23247 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f9cde9 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48258e0d xprt_adjust_cwnd EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48bd83f6 rpc_remove_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48e76bfc sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49d8bd53 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a191541 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a239ba5 rpc_clnt_xprt_switch_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a98706a rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4adaee11 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a9abfc0 xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b3c5e95 cache_register_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c97c981 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d5e8126 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d4e5d4c svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e816573 svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fc34f52 rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fdd354c rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5026b31f xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bbaa94 rpcauth_wrap_req_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53d1f1f0 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54003346 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5477b0d1 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548e482c rpc_task_release_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56da0f05 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f96ac8 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59bf2564 xdr_stream_zero EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b33a048 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4819ef xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0dd238 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed5c258 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ae62b18 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5da27357 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dbdad60 rpc_num_bc_slots EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f4073de svcauth_unix_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b21d31 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x632c71cc rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x640a091e rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65424969 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66547c67 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x635640ef rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e81843 svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x669856fa rpc_mkpipe_dentry EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a398bb8 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6783fd4f svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67b0bcee svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69682e1b svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e7bdc0 svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a544042 xdr_buf_from_iov EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc20fa2 rpc_uaddr2sockaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ccc16b8 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d24a40f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d05435e rpc_put_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec140fe rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b8fad7 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0f01d5 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70e79380 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x717ae24c xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bf8628 svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72586066 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76145dfc rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f6d2ac svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78b875ca rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a7f9ec9 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d92c3b2 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72901012 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736f7eea rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75602fad svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756e6404 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76c3b280 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a094a91 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a80ba66 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aafe916 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b13fdad rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b3fcee3 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c5214fd xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea7dbda svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815e98e6 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81e7ebee xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822ab1cf rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f35399e xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ffd2b12 xprt_register_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x829325b4 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x834bd91e xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8366db92 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x839f94a2 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85edeca7 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a70a07 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8811c49a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83dfe6af rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866b42d0 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a3a342 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x870af554 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x879bb544 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88139801 xdr_init_encode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8907d630 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x898b28b6 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aaf9b9b rpc_clnt_disconnect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8acea253 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb913f3 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da7f19e rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e8e0fb8 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9093c9d0 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92e04b4a xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9310d2b8 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x938943f2 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9434e10c xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94cf799c rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966fbe40 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b042fc7 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb127fd xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92bd94bd rpc_clnt_xprt_switch_remove_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x974a7a86 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x975234f9 xprt_lookup_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x979a1d03 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9932b67d svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9806156e svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x984f7465 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9880737d xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98d828c5 xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a2fd349 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a85ad11 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9ac014 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b143a38 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bc77049 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c456673 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce11dee rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3cbb98 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fb2c18f xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0ac1e79 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0fc5501 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa14783f0 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa19907d6 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b78c3c0 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d374df2 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e3a2f6e rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e60004a svc_bind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39f9a14 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa41e7351 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa49543b5 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4cd1252 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4ff297b xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60f2e4b xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa610144b svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6cac1f3 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6522b48 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa75f103c xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7657e81 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9170a4c rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa7c4ce9 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9fe2701 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa2a6297 rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa0a231 rpc_destroy_pipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac199b36 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac87dd74 xdr_enter_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaded7690 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae5a0110 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf02106c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeb268d6 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf3dced0 svc_set_num_threads EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb064f6e8 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb26d5701 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb39cee6c svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2054cfc svc_authenticate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4c96c9c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4cb5c2e svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4d3463f xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb59259dd xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb62cbd6a rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb639d105 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5cb5e31 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb780953a xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb833c242 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb86ca6c3 rpcauth_init_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8cad6f8 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba4f56c6 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba87abd7 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba9309c svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf4aacd7 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb96cfabb xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9f89830 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb93b877 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdba596f xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbebf7bb9 rpc_max_bc_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1bd06a1 xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62b3b1a svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6f2e779 svc_xprt_names EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc751dafc sunrpc_destroy_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9f81c70 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcafe1e6c svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc9248c0 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd217de7 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdb5d3e5 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca70dcfa rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca9cb7a1 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccad3b36 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd929ffd rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce35e94e rpc_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcea592ee xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfc0b219 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf8ff951 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfd12c0a rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd04c6193 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd177e307 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd20552b6 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd39e1b68 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd100f61d rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3776361 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd69ff80e rpc_clnt_disconnect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a9b05b rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd752c1b9 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a3c918 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a11709 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6adb4ee rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd77116ce rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd78de930 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d6ea51 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd876fb85 rpcauth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaff357d read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba7c873 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbbac041 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd1f96f4 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd4ce45b rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbaa6cfa xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc236173 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc4f3fe5 svc_print_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05a4189 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe12ef573 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1e1c379 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2f413b5 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde4277ab rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde55d919 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdecf1517 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06acf1f xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe07a2e08 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a9deab auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ca7579 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4083007 rpc_clnt_swap_activate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe437b7a8 xdr_decode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe481ac28 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe49cf1e2 svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5af45d0 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95609e5 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe70661eb rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe84b4dab rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe94cc396 svc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9cbcc1d rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb20c8ac xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb67c42d rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec79a077 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec1eb592 svc_auth_register 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 0xef17ea85 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef5b6b60 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefe7a4c6 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf024b9f4 xdr_write_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf036e258 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08d3cf7 rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1caff5e svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0c872a9 rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1deb9bb cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf23598f7 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf24e1755 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf30022db xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3579c61 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3f5c140 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a96cb4 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf585f2ee xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f4c425 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf212404c xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf23f26cf rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c244a2 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f8d062 svc_create_pooled EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf742c32b cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7853f20 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d977c5 auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7de2093 write_bytes_to_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8d0c636 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d2e003 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa83a65e xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaac053a xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc1442db xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8b877b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb3ca04e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8fc0bc rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9a4742 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe47eedf svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef342b0 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff85be7d svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb5a1f3 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2ecfff svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff81e295 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe29dc3 rpc_peeraddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe5fffd _copy_from_pages -EXPORT_SYMBOL_GPL net/tls/tls 0x25254044 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x8f058574 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x933b5789 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x981c73a8 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x1605a087 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x1ddc1c04 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x2f6d9a19 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x590fd868 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 0x08ec359e virtio_transport_stream_is_active EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0cf3a3e7 virtio_transport_notify_send_pre_block @@ -18486,6 +18488,7 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb769a2ec ipcomp_output EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL vmlinux 0x000360dd hv_ivm_hypercall EXPORT_SYMBOL_GPL vmlinux 0x00239d58 devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x00269cd1 nvme_mpath_start_request EXPORT_SYMBOL_GPL vmlinux 0x00355a57 __phy_modify_mmd_changed @@ -18525,7 +18528,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure EXPORT_SYMBOL_GPL vmlinux 0x01850555 nvme_auth_generate_key EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0199b0e4 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x019e2ded icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free EXPORT_SYMBOL_GPL vmlinux 0x01a8d05e crypto_stats_compress @@ -18555,6 +18557,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x02dd4f08 fsl_mc_obj_close EXPORT_SYMBOL_GPL vmlinux 0x02ddbcfe iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x02f6ba2b vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0301d536 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x03037219 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x0307684c netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x030911a8 scsi_host_block @@ -18653,7 +18656,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x05a8a44c get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x05bc7d9e unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x05c17b24 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x05c66a13 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x05cb3179 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x05d9ba83 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x05df2e17 crypto_alg_mod_lookup @@ -18692,7 +18694,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x073106b4 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x0737c87e pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x073b6ce0 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x073d10d1 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x07411aa2 pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x074626e3 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x0746c0e8 extcon_get_edev_name @@ -18721,6 +18722,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x080dc406 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL vmlinux 0x08458fa9 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x084abbc7 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x086acc2d dw8250_setup_port @@ -18728,7 +18730,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match EXPORT_SYMBOL_GPL vmlinux 0x088898bd fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x088d7cd5 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x0894cce4 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x08965dc4 hisi_uncore_pmu_set_event_period EXPORT_SYMBOL_GPL vmlinux 0x08a68f63 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load @@ -18751,6 +18752,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x09518895 usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0x09551822 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x09594ed2 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x0972156a mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x0975266f ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x098d6525 wait_for_stable_page @@ -18868,7 +18870,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0df5cc58 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e097d49 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release @@ -18963,7 +18964,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x11624b3d gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x1169094d gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x11733398 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x117b6fdf unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x118c8789 nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0x11a1b44c gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x11abc494 __SCK__tp_func_nvme_sq @@ -19029,6 +19029,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x13a6f69a device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x13cdd08c key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d18d02 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc EXPORT_SYMBOL_GPL vmlinux 0x13f5e45e devlink_port_attrs_pci_sf_set @@ -19074,7 +19075,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x15982287 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b8076d sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave EXPORT_SYMBOL_GPL vmlinux 0x15c42335 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam @@ -19088,13 +19088,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x16278141 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x162bfa0e kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x16438834 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x164e06f7 dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0x164e60ae tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x164fec56 usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed EXPORT_SYMBOL_GPL vmlinux 0x166ad753 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x166b6e8f xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x167b272e clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device EXPORT_SYMBOL_GPL vmlinux 0x1682961e trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0x1685c6d6 dprc_get_obj_count @@ -19255,6 +19254,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off EXPORT_SYMBOL_GPL vmlinux 0x1cc200a6 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x1cc873b0 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x1cd44f98 hyperv_paravisor_present EXPORT_SYMBOL_GPL vmlinux 0x1cd773ba virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral EXPORT_SYMBOL_GPL vmlinux 0x1ce1964d virtqueue_get_buf @@ -19323,6 +19323,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee3ac4d bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x1f1193cd screen_glyph @@ -19378,7 +19379,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x21368bcb devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x216f413d __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x216fa4cf nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg EXPORT_SYMBOL_GPL vmlinux 0x217b52e2 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x217c2e89 ahci_platform_enable_clks @@ -19421,7 +19421,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2335f934 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x234332cf pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x23471f3e mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put EXPORT_SYMBOL_GPL vmlinux 0x2350b007 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec @@ -19434,6 +19433,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x239f1a4c ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x23a0014b acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x23a06c4d udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x23a14063 mtk_clk_unregister_muxes EXPORT_SYMBOL_GPL vmlinux 0x23a76bc3 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x23b47922 io_uring_cmd_done @@ -19569,7 +19569,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x2889c72e extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x289c3cd7 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request @@ -19640,6 +19639,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b781858 vmbus_hvsock_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2b79114d __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x2b7ef27d crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x2b81f160 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x2b966119 dev_pm_opp_config_clks_simple @@ -19652,6 +19652,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2bdc7c4f dev_dax_probe EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending EXPORT_SYMBOL_GPL vmlinux 0x2bf2d6c7 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x2bfeac41 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c305ee8 of_genpd_remove_subdomain @@ -19684,7 +19685,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2cc3fea7 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list EXPORT_SYMBOL_GPL vmlinux 0x2cd3f9f4 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x2cd9aa66 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x2ce232e1 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x2ce5155b ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add @@ -19786,6 +19786,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3062ce89 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x30678897 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x307b4f68 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x3084c9bc sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x309a04c9 vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x30aa2015 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x30ae3400 iommu_attach_device @@ -19834,7 +19835,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3230b438 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x32374650 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x3238f17d rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x324d23c2 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x324e797c genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x3254446d io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update @@ -19911,7 +19911,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x34a6016b ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x34b6fb09 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x34ba52bf otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x34bf3bb7 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x34c3f4a6 gnttab_map_refs @@ -19924,7 +19923,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3501d9f2 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x35088435 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x350b8e80 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x350c7162 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x350d7145 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x35141ef0 regulator_set_voltage_time_sel @@ -19957,10 +19955,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0x35e91d95 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x35e9e9b1 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL vmlinux 0x35eb2552 tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0x35f67f37 fsl_mc_portal_allocate EXPORT_SYMBOL_GPL vmlinux 0x35f6e33e alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x3600bd37 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x36061e13 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x360ae3b2 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process EXPORT_SYMBOL_GPL vmlinux 0x363ac5c6 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x363ea2c1 of_prop_next_u32 @@ -19975,6 +19975,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x367eef3d regulator_irq_map_event_simple EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs EXPORT_SYMBOL_GPL vmlinux 0x368b3ff9 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3692cc6f sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x3698d29c gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36ab1aa8 acpi_subsys_suspend_noirq @@ -20053,6 +20054,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x398cb4ec scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x3992ff92 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL vmlinux 0x39a30459 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x39a6a47e fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string @@ -20227,6 +20229,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x40036fce regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x40047d10 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release EXPORT_SYMBOL_GPL vmlinux 0x400af981 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x40112216 rcu_tasks_trace_qs_blkd @@ -20244,7 +20247,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x404b51f8 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x4059d4df usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x405d55d5 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x405d6b83 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x405d9504 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution @@ -20397,7 +20399,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault EXPORT_SYMBOL_GPL vmlinux 0x453369f9 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x454e471c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x45541cdd bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x45670a92 msg_zerocopy_put_abort @@ -20438,7 +20439,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46ad6da6 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite EXPORT_SYMBOL_GPL vmlinux 0x46cad4f2 mtk_eint_find_irq EXPORT_SYMBOL_GPL vmlinux 0x46e16377 get_kernel_pages @@ -20658,6 +20658,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4e64440d kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x4e6b23ab icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4e728283 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x4ea3a6a4 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt @@ -20734,7 +20735,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x511c9bae sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x5145b0b2 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x51495ee7 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x514b183e dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x515479d7 devm_ti_sci_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group @@ -20765,7 +20765,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease EXPORT_SYMBOL_GPL vmlinux 0x520fb8bd check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0x5211ca70 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x52145e56 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x5224836e srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x5231816a nvme_disable_ctrl @@ -20838,7 +20837,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put EXPORT_SYMBOL_GPL vmlinux 0x54a99826 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x54b28a3f usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x54b8620e bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x54f1bc84 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x54fb010f class_compat_remove_link @@ -20899,6 +20897,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x56eb99d1 rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x570a7b2d i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x57265d9f sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x57290d40 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x57315c9c find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x5737a7a1 crypto_aead_decrypt @@ -20961,7 +20960,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x595f727b folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x596bd5a7 mtk_clk_unregister_dividers EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x5986ec80 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x598f2c35 dprc_reset_container EXPORT_SYMBOL_GPL vmlinux 0x599dab28 da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x59aac1ca ata_sff_postreset @@ -20974,7 +20972,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59efcdd9 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0x5a0c63ba phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x5a13281c vmbus_driver_unregister @@ -21090,7 +21087,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5d5df5be pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x5d7157b2 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x5d754e34 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x5d779c78 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d8578ef pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0x5d85f4a7 perf_pmu_register @@ -21112,6 +21108,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5df01f48 pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x5e09dc65 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e187bfe sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x5e19ee7b power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0x5e1b5810 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x5e21dfdb nvme_dev_attrs_group @@ -21125,7 +21122,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5e50f9cd of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 EXPORT_SYMBOL_GPL vmlinux 0x5e56284f pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x5e728112 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e7733a2 hisi_uncore_pmu_identifier_attr_show EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val @@ -21145,6 +21141,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ece2e9d device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0x5f0d98b9 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5f1576df espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f2686db dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x5f2a9d46 acpi_get_dma_attr @@ -21152,7 +21149,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f3fa3f7 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x5f454be5 devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x5f4b5bf9 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5f51a627 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x5f53d96e ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x5f5616f3 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x5f5c7dca udp_cmsg_send @@ -21258,6 +21254,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context EXPORT_SYMBOL_GPL vmlinux 0x6269d4f3 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x626a945c sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x6286981c meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x628cb6a8 ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0x629f048f validate_xmit_xfrm @@ -21303,6 +21300,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6452800d dpcon_close EXPORT_SYMBOL_GPL vmlinux 0x645d1c9e ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6464465c sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x64750103 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x648976f8 skcipher_walk_aead_encrypt @@ -21385,6 +21383,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x67315bc2 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x6737a8cd usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673c5e7d bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x674abba5 k3_udma_glue_request_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x674c5bc1 nvme_auth_hmac_name @@ -21421,6 +21420,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6846585e ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode EXPORT_SYMBOL_GPL vmlinux 0x684f7d34 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x685baff3 usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0x686b102c of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0x6878a71b gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x68899f94 ata_sff_error_handler @@ -21531,6 +21531,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6bd91bc4 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6bf68276 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x6c0c9564 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x6c1434ea usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print @@ -21543,7 +21544,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register EXPORT_SYMBOL_GPL vmlinux 0x6c652d4d inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c776f80 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x6c8d0205 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x6c8fc7ad of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0x6c946be8 usb_phy_roothub_alloc @@ -21636,7 +21636,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x6f13984e usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x6f1fecda sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f48097e sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x6f4b8c6f rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x6f660632 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options @@ -21644,6 +21643,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action EXPORT_SYMBOL_GPL vmlinux 0x6f7f2557 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6f9ef2a0 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x6fa1a983 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset EXPORT_SYMBOL_GPL vmlinux 0x6fb3c43a md_bitmap_load @@ -21718,6 +21718,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x71c91c8c irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x71fa70ca meson_clk_dualdiv_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x720fae82 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x72365354 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x723731d5 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify EXPORT_SYMBOL_GPL vmlinux 0x723ef78f kvm_read_guest_offset_cached @@ -21843,7 +21844,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7611857e fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x76153ae8 blk_stat_disable_accounting EXPORT_SYMBOL_GPL vmlinux 0x76177b2e cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x763b3c67 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x76203c62 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x76446783 sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance EXPORT_SYMBOL_GPL vmlinux 0x76531756 icc_sync_state @@ -21941,11 +21942,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot EXPORT_SYMBOL_GPL vmlinux 0x7955a4e5 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x7957b135 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x7965b6d6 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x796c21ca usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x79763753 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev EXPORT_SYMBOL_GPL vmlinux 0x7998e306 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x799f48ea tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x79a30831 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x79b7fcaa of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups @@ -21963,6 +21966,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x79fdb85a crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x7a210d75 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x7a276a89 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7a2a4f9e tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x7a3b1257 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a44dcc2 cpufreq_enable_fast_switch @@ -22071,7 +22075,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x7d79564e dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0x7d84e706 subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x7d88b901 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x7d9d5b32 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x7d9f8e3c device_property_present EXPORT_SYMBOL_GPL vmlinux 0x7da79505 meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x7db4dca3 proc_create_net_data_write @@ -22086,6 +22089,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7deb3d2f devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0x7df0a97e crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7df6f083 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x7e01c5fb blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x7e073939 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x7e0a1107 of_dma_controller_free @@ -22096,6 +22100,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7e3cc0b9 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x7e4229be debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x7e433cbb edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x7e499751 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x7e567f5f ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time @@ -22209,6 +22214,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x81dfe200 cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81e4b3ea of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x81ecdff7 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x81ed386d regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x81f1682a debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export @@ -22482,6 +22488,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts EXPORT_SYMBOL_GPL vmlinux 0x8a86acab dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x8a8d73de unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x8a8e373d acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x8a9221a9 phy_create EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot @@ -22509,7 +22516,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8b843128 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x8b86f393 dma_resv_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall EXPORT_SYMBOL_GPL vmlinux 0x8b9321cd unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op @@ -22542,7 +22548,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext -EXPORT_SYMBOL_GPL vmlinux 0x8ca3877b sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x8ca73323 of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable EXPORT_SYMBOL_GPL vmlinux 0x8cc8dbdd devm_request_pci_bus_resources @@ -22564,7 +22569,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting EXPORT_SYMBOL_GPL vmlinux 0x8da17565 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x8da31fed xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x8da50903 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x8da87e96 devres_find EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call @@ -22703,7 +22707,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x92423716 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL vmlinux 0x92487199 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92586e1c xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x925eea1e devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x925f2b94 vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0x9264cdc3 fuse_get_unique @@ -22812,7 +22818,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x95859553 iommu_detach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x95885051 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x958aeb00 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x95ae4bcb devm_usb_put_phy @@ -22832,6 +22837,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size EXPORT_SYMBOL_GPL vmlinux 0x95f6de1c register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x95fca9b7 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x9602f5ee sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x961be1fc sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative @@ -22852,9 +22858,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset EXPORT_SYMBOL_GPL vmlinux 0x96cf40bc devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x96e1b4eb acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x96e51217 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x96f9f100 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x9701551b badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x970d9ae8 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x970f3ba5 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x97235006 __nf_ip6_route @@ -22942,7 +22950,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x9a83ad22 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x9a96b22c edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0x9aacbffc kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x9aba8940 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9ac75d80 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x9ace679e kthread_data @@ -22955,6 +22962,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9b038710 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x9b0da665 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0x9b28e71b pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0x9b3868a3 crypto_grab_skcipher @@ -22981,6 +22989,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9bbaef9e check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0x9bc745b2 handle_fasteoi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x9bc9c044 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9bc9d605 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0x9bd89ecd pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range @@ -23232,7 +23241,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa449934f phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xa44a0012 fscrypt_add_test_dummy_key EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44a1752 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq EXPORT_SYMBOL_GPL vmlinux 0xa454a9b6 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xa45b8e2a kvm_vcpu_kick @@ -23343,6 +23351,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa7964135 fsl_mc_device_add EXPORT_SYMBOL_GPL vmlinux 0xa7a3b9f3 nvme_complete_async_event EXPORT_SYMBOL_GPL vmlinux 0xa7bd2d8a genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xa7c7fccb mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xa7d3d305 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xa7de07fa __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xa80ff782 blk_rq_is_poll @@ -23353,9 +23362,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xa83c5d95 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa85b5527 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa85ea855 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xa86ae529 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xa8796e58 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa8865afa sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xa88bfdf8 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark @@ -23432,7 +23442,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xabbf5b15 mtk_clk_register_composites EXPORT_SYMBOL_GPL vmlinux 0xabc3a2da __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabcb194e xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine EXPORT_SYMBOL_GPL vmlinux 0xabd7d1e1 fsl_mc_bus_dprc_type EXPORT_SYMBOL_GPL vmlinux 0xabe99174 regmap_irq_get_domain @@ -23446,6 +23455,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xac5ed9bc pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0xac69c162 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xac6a1591 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xac79ba63 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0xac9237fc iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0xac9ad0c2 usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0xac9cfa72 tty_buffer_lock_exclusive @@ -23457,7 +23467,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xacc00c3c tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now EXPORT_SYMBOL_GPL vmlinux 0xaccf0cdf clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xacd9efe2 register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xace41498 handle_fasteoi_ack_irq EXPORT_SYMBOL_GPL vmlinux 0xacfb7f5f icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0xacfe2300 nvme_set_features @@ -23537,7 +23546,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf3af421 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check EXPORT_SYMBOL_GPL vmlinux 0xaf40df9b pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0xaf41f765 virtqueue_kick_prepare @@ -23577,6 +23585,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus EXPORT_SYMBOL_GPL vmlinux 0xb08e7e8d sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0xb092681f serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb094eb62 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xb09d1308 mtk_free_clk_data EXPORT_SYMBOL_GPL vmlinux 0xb0aab230 mtk_eint_do_init EXPORT_SYMBOL_GPL vmlinux 0xb0b2d23b stmpe_set_altfunc @@ -23626,7 +23635,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert EXPORT_SYMBOL_GPL vmlinux 0xb22aa0b4 sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0xb22bba97 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xb231f793 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0xb234fb2f fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full @@ -23742,6 +23750,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb5c79415 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xb5c886e4 hisi_uncore_pmu_event_init EXPORT_SYMBOL_GPL vmlinux 0xb5f5f07b pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xb5f75e57 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xb602ddbe unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device @@ -23856,7 +23865,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first EXPORT_SYMBOL_GPL vmlinux 0xb9d24049 devm_hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0xb9d7cf4e crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xb9f7f00f tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0xb9fe354a irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0xba02b54d synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xba035cdf mtk_eint_set_debounce @@ -23922,7 +23930,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbbe5b151 screen_pos EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config EXPORT_SYMBOL_GPL vmlinux 0xbc0d0bf6 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xbc1a044c xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0xbc26591b genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap EXPORT_SYMBOL_GPL vmlinux 0xbc382306 tpm_try_get_ops @@ -23956,7 +23963,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd05958d clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name EXPORT_SYMBOL_GPL vmlinux 0xbd11cb4d class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xbd1de908 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd49500f sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xbd4c9f25 sysfs_file_change_owner @@ -24141,6 +24147,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl EXPORT_SYMBOL_GPL vmlinux 0xc39cd4af sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xc3a9e901 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xc3b0130c register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xc3b52c07 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xc3b9e468 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xc3bc461d ata_bmdma_dumb_qc_prep @@ -24212,6 +24219,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc5d81b7b shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0xc5dad2c1 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0xc5db5c1e acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc5efd55a mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0xc5f56ef2 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0xc6108fd7 gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0xc613c8fb of_reserved_mem_lookup @@ -24222,7 +24230,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc6454224 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0xc6477f8a dprc_setup EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc655db7f sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xc6614483 regulator_bulk_unregister_supply_alias @@ -24233,6 +24240,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc674befe scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc6974b34 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0xc697afb6 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc699b461 scsi_internal_device_block_nowait @@ -24345,7 +24353,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xca1ed5eb pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4bc2d2 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName EXPORT_SYMBOL_GPL vmlinux 0xca58861c inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xca682202 pm_generic_poweroff_late @@ -24379,6 +24386,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0xcb6097e7 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0xcb75e250 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xcb78cf8e tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xcb87dca3 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xcb8b517e kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0xcba5d770 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0xcba9393a of_pci_parse_bus_range @@ -24410,10 +24419,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xccc808fd gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce91ba0 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xcced2511 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start EXPORT_SYMBOL_GPL vmlinux 0xcd02f66f blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xcd1b361d register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xcd1f3432 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0xcd21fd81 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size @@ -24476,6 +24485,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine EXPORT_SYMBOL_GPL vmlinux 0xcefed038 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xcf3087c0 usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0xcf4261cf fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0xcf5368b3 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xcf5ac434 device_for_each_child @@ -24500,7 +24510,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xcffc5ada usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic EXPORT_SYMBOL_GPL vmlinux 0xd0010b7c iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xd006e208 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xd012c98f edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0xd01b52b3 simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op @@ -24568,6 +24577,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd222af3f tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0xd2261234 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xd23ad9fc bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xd23f1570 hv_tdx_hypercall_fast EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block EXPORT_SYMBOL_GPL vmlinux 0xd24b54b3 em_dev_unregister_perf_domain @@ -24627,6 +24637,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd3c77059 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0xd3cb8e6d dw_pcie_ep_raise_legacy_irq EXPORT_SYMBOL_GPL vmlinux 0xd3d08141 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xd3d47ed9 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xd3db79fe k3_udma_glue_tx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0xd3e5b51d sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear @@ -24691,6 +24702,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd5b8197d sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0xd5b89054 transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0xd5bb5866 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xd5d8a681 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xd5e374b9 divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xd5e591b5 syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0xd5e973ac __traceiter_xdp_exception @@ -24718,6 +24730,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source EXPORT_SYMBOL_GPL vmlinux 0xd6ddd728 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0xd6e0591a gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xd6e62f0d espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xd70170fb get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0xd70a989d posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xd715ab6f irq_domain_reset_irq_data @@ -24806,12 +24819,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xda40458c usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0xda492eb7 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0xda551289 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xda57f678 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xda620fa7 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xda6dc1fe bgpio_init EXPORT_SYMBOL_GPL vmlinux 0xda750ae7 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xda7579e0 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xda786065 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xda8444bf __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name @@ -24910,6 +24921,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddd06659 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xdde39d3f clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xddec09ac register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0xde103c11 of_clk_hw_onecell_get @@ -24937,12 +24949,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xdf433e13 device_show_int EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex EXPORT_SYMBOL_GPL vmlinux 0xdf540b05 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xdf6529e4 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xdf6c7c7c gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0xdf6c9e6d wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0xdf745950 file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0xdf765182 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xdf816911 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xdf855fad mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xdf8ad2f0 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xdf8f5a95 irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xdf997ee8 __traceiter_detach_device_from_domain @@ -24955,7 +24967,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdfcfc7bb iov_iter_get_pages_alloc EXPORT_SYMBOL_GPL vmlinux 0xdfd53233 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xdfe26dd5 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xdff92d9a xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xe00474f8 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xe00ae81e i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xe013afbc __virtio_unbreak_device @@ -24989,7 +25000,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe142d058 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xe153074d mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xe15b7cd7 ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe15d9f8d udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xe16273d0 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0xe16d9609 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0xe1700a97 ti_sci_inta_msi_create_irq_domain @@ -25134,6 +25144,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xe6fa69de alloc_dax EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe7081b42 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe712686b sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xe71c35a7 icc_put EXPORT_SYMBOL_GPL vmlinux 0xe7286dac devm_ti_sci_get_of_resource EXPORT_SYMBOL_GPL vmlinux 0xe73e332d tpm2_probe @@ -25154,13 +25165,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xe79144d0 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe79abcbe sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xe7a1cb1d pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe7cbba67 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xe7d02652 crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0xe7d2d83e device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dbd34e espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xe7e89c50 irq_gc_mask_disable_reg EXPORT_SYMBOL_GPL vmlinux 0xe7f2fc0e fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0xe801aa31 netdev_walk_all_upper_dev_rcu @@ -25275,7 +25284,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xeb9ca630 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xeba1a56e crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xebb4d987 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xebc2b3af bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xebc4662f device_register EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebddae0c kern_mount @@ -25289,7 +25297,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xec4da370 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec61a0cf bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xec6dd45e bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec79bfd1 devm_clk_register @@ -25313,6 +25320,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xed2fda20 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xed3164a5 dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed5c0e75 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xed5fff87 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0xed6799a2 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xed7a9592 perf_event_disable @@ -25408,7 +25416,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf066d89b devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable EXPORT_SYMBOL_GPL vmlinux 0xf07c1770 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xf07cfa54 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xf084cd31 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream EXPORT_SYMBOL_GPL vmlinux 0xf093c0fe do_unbind_con_driver @@ -25516,7 +25523,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf49c8df1 __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xf49de7e5 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a8f2ed sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal EXPORT_SYMBOL_GPL vmlinux 0xf4bedb99 __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0xf4c75c1a mtk_is_virt_gpio @@ -25556,7 +25562,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf602b05c crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xf60972cf device_find_any_child EXPORT_SYMBOL_GPL vmlinux 0xf60e9e1b gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xf612c1a4 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 EXPORT_SYMBOL_GPL vmlinux 0xf63be42b ip6_sk_dst_lookup_flow @@ -25618,6 +25623,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0xf79eba76 transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b4bf95 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7bf7f9c crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register @@ -25765,6 +25771,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfc1f0696 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2a7280 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xfc2e9d44 dm_submit_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xfc33ef35 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xfc38d240 dev_pm_opp_adjust_voltage diff -u linux-azure-6.2-6.2.0/debian.azure-6.2/abi/fwinfo linux-azure-6.2-6.2.0/debian.azure-6.2/abi/fwinfo --- linux-azure-6.2-6.2.0/debian.azure-6.2/abi/fwinfo +++ linux-azure-6.2-6.2.0/debian.azure-6.2/abi/fwinfo @@ -130,6 +130,7 @@ firmware: amdgpu/gc_11_0_0_mec.bin firmware: amdgpu/gc_11_0_0_mes.bin firmware: amdgpu/gc_11_0_0_mes1.bin +firmware: amdgpu/gc_11_0_0_mes_2.bin firmware: amdgpu/gc_11_0_0_pfp.bin firmware: amdgpu/gc_11_0_0_rlc.bin firmware: amdgpu/gc_11_0_0_toc.bin @@ -138,6 +139,7 @@ firmware: amdgpu/gc_11_0_1_mec.bin firmware: amdgpu/gc_11_0_1_mes.bin firmware: amdgpu/gc_11_0_1_mes1.bin +firmware: amdgpu/gc_11_0_1_mes_2.bin firmware: amdgpu/gc_11_0_1_pfp.bin firmware: amdgpu/gc_11_0_1_rlc.bin firmware: amdgpu/gc_11_0_2_imu.bin @@ -145,6 +147,7 @@ firmware: amdgpu/gc_11_0_2_mec.bin firmware: amdgpu/gc_11_0_2_mes.bin firmware: amdgpu/gc_11_0_2_mes1.bin +firmware: amdgpu/gc_11_0_2_mes_2.bin firmware: amdgpu/gc_11_0_2_pfp.bin firmware: amdgpu/gc_11_0_2_rlc.bin firmware: amdgpu/gc_11_0_3_imu.bin @@ -152,6 +155,7 @@ firmware: amdgpu/gc_11_0_3_mec.bin firmware: amdgpu/gc_11_0_3_mes.bin firmware: amdgpu/gc_11_0_3_mes1.bin +firmware: amdgpu/gc_11_0_3_mes_2.bin firmware: amdgpu/gc_11_0_3_pfp.bin firmware: amdgpu/gc_11_0_3_rlc.bin firmware: amdgpu/gc_11_0_4_imu.bin @@ -159,6 +163,7 @@ firmware: amdgpu/gc_11_0_4_mec.bin firmware: amdgpu/gc_11_0_4_mes.bin firmware: amdgpu/gc_11_0_4_mes1.bin +firmware: amdgpu/gc_11_0_4_mes_2.bin firmware: amdgpu/gc_11_0_4_pfp.bin firmware: amdgpu/gc_11_0_4_rlc.bin firmware: amdgpu/green_sardine_asd.bin @@ -1452,6 +1457,12 @@ firmware: rtl_bt/rtl8723b_fw.bin firmware: rtl_bt/rtl8723bs_config.bin firmware: rtl_bt/rtl8723bs_fw.bin +firmware: rtl_bt/rtl8723cs_cg_config.bin +firmware: rtl_bt/rtl8723cs_cg_fw.bin +firmware: rtl_bt/rtl8723cs_vf_config.bin +firmware: rtl_bt/rtl8723cs_vf_fw.bin +firmware: rtl_bt/rtl8723cs_xx_config.bin +firmware: rtl_bt/rtl8723cs_xx_fw.bin firmware: rtl_bt/rtl8723ds_config.bin firmware: rtl_bt/rtl8723ds_fw.bin firmware: rtl_bt/rtl8761a_config.bin @@ -1460,6 +1471,8 @@ firmware: rtl_bt/rtl8821a_fw.bin firmware: rtl_bt/rtl8822b_config.bin firmware: rtl_bt/rtl8822b_fw.bin +firmware: rtl_bt/rtl8851bu_config.bin +firmware: rtl_bt/rtl8851bu_fw.bin firmware: rtl_bt/rtl8852au_config.bin firmware: rtl_bt/rtl8852au_fw.bin firmware: rtl_bt/rtl8852bu_config.bin diff -u linux-azure-6.2-6.2.0/debian.azure-6.2/abi/version linux-azure-6.2-6.2.0/debian.azure-6.2/abi/version --- linux-azure-6.2-6.2.0/debian.azure-6.2/abi/version +++ linux-azure-6.2-6.2.0/debian.azure-6.2/abi/version @@ -1 +1 @@ -6.2.0-1010.10~22.04.1 +6.2.0-1011.11~22.04.1 diff -u linux-azure-6.2-6.2.0/debian.azure-6.2/changelog linux-azure-6.2-6.2.0/debian.azure-6.2/changelog --- linux-azure-6.2-6.2.0/debian.azure-6.2/changelog +++ linux-azure-6.2-6.2.0/debian.azure-6.2/changelog @@ -1,3 +1,34 @@ +linux-azure-6.2 (6.2.0-1012.12~22.04.1) jammy; urgency=medium + + * jammy/linux-azure-6.2: 6.2.0-1012.12~22.04.1 -proposed tracker + (LP: #2034143) + + [ Ubuntu: 6.2.0-1012.12 ] + + * lunar/linux-azure: 6.2.0-1012.12 -proposed tracker (LP: #2034144) + * lunar/linux: 6.2.0-33.33 -proposed tracker (LP: #2034158) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * CVE-2023-21264 + - KVM: arm64: Prevent unconditional donation of unmapped regions from the host + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + + -- Tim Gardner Thu, 07 Sep 2023 07:15:22 -0600 + linux-azure-6.2 (6.2.0-1011.11~22.04.1) jammy; urgency=medium * jammy/linux-azure-6.2: 6.2.0-1011.11~22.04.1 -proposed tracker diff -u linux-azure-6.2-6.2.0/debian.azure-6.2/tracking-bug linux-azure-6.2-6.2.0/debian.azure-6.2/tracking-bug --- linux-azure-6.2-6.2.0/debian.azure-6.2/tracking-bug +++ linux-azure-6.2-6.2.0/debian.azure-6.2/tracking-bug @@ -1 +1 @@ -2030367 2023.08.07-1 +2034143 s2023.08.07-1 diff -u linux-azure-6.2-6.2.0/debian.azure/abi/abiname linux-azure-6.2-6.2.0/debian.azure/abi/abiname --- linux-azure-6.2-6.2.0/debian.azure/abi/abiname +++ linux-azure-6.2-6.2.0/debian.azure/abi/abiname @@ -1 +1 @@ -1010 +1011 diff -u linux-azure-6.2-6.2.0/debian.azure/abi/amd64/azure linux-azure-6.2-6.2.0/debian.azure/abi/amd64/azure --- linux-azure-6.2-6.2.0/debian.azure/abi/amd64/azure +++ linux-azure-6.2-6.2.0/debian.azure/abi/amd64/azure @@ -10,72 +10,72 @@ CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x63c7c7a2 crypto_cipher_encrypt_one vmlinux CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x72105924 crypto_cipher_decrypt_one vmlinux CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xeac34887 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x0039bf45 set_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x03e63b2e devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x04a8fdbf cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0550a781 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x1b26b7ae cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0d854ce8 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x159f7eac cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x19bb97c8 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1b2756c7 cxl_find_regblock drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1ed5933d cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x239695c5 set_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2c8e13b0 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x30520100 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e4eb617 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e6db95f to_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x32a69ff8 is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x33197535 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x36336072 cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x42e7a2c3 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4d29d9ba schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x594d4d5a to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x599d3677 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x34268e90 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x36551dcd cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x378929d2 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4541b876 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4906bb88 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4cfb5a86 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4f2c8387 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x529fa441 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57bd5d82 cxl_await_media_ready drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x624131a1 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6646e8ca devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6753a081 cxl_bus_type drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6b36e9d8 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6b6f3e4f cxl_decoder_add_locked drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x6c1b2c18 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6eb16df3 cxl_internal_send_cmd drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x72a22e74 cxl_decoder_add drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x747b1614 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x75ada4b4 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x750373f7 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7bd10c41 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x83eb01c8 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux CXL EXPORT_SYMBOL_GPL 0x84ecda20 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x89cb1649 cxl_dev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8c143f10 cxl_decoder_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9c86cd5e devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9df25864 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b7b19a6 to_cxl_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x9e8a9db9 is_cxl_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa150d2ca is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2336b4d to_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa33a873e cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xae1958e5 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb1917d04 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb4a2dfff cxl_hdm_decode_init drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xb916f7b6 read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb98c9143 to_cxl_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xba17b902 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbb0155ec devm_cxl_add_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xbd3cec01 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc0eceda4 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc1a8893c devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc300bc4e clear_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc3c49057 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc7b8b9c0 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc816458d cxl_await_media_ready drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc945aacf devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbebeaf7 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xce2bca60 cxl_decoder_add_locked drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xd090c4a8 is_cxl_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xd8cdc14c is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd94bf9a7 cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe05ca501 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdac9070f cxl_endpoint_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe1a51e61 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe2c11493 cxl_hb_modulo drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe5bf1332 to_cxl_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe720e42f is_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe9bb5fc0 cxl_port_to_pci_bus drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf1e7dc30 cxl_probe_component_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf482ddf4 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf58c45fb devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5dfc0e0 cxl_mem_find_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf83ba080 is_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf9e74265 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfb9f505d devm_cxl_add_nvdimm drivers/cxl/core/cxl_core DEVMEM EXPORT_SYMBOL_GPL 0x3c804b25 cpu_cache_invalidate_memregion vmlinux DEVMEM EXPORT_SYMBOL_GPL 0xd6551b9c cpu_cache_has_invalidate_memregion vmlinux DMA_BUF EXPORT_SYMBOL_GPL 0x1233c8ed dma_buf_vmap_unlocked vmlinux @@ -395,12 +395,10 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a21ce3a drm_atomic_private_obj_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a897027 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba98cd3 drmm_mutex_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0baf30cb drm_vblank_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d785016 drm_connector_attach_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db0bd3f drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e954838 drm_mode_object_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb70586 drm_plane_get_damage_clips_count @@ -426,6 +424,7 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e2bc1b drm_atomic_add_affected_connectors EXPORT_SYMBOL drivers/gpu/drm/drm 0x16157caf drm_connector_set_link_status_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c3c8f0 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x189c452a __drmm_mutex_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free EXPORT_SYMBOL drivers/gpu/drm/drm 0x1abaeaad drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b3a2605 drm_connector_attach_privacy_screen_provider @@ -784,6 +783,7 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0xe469ccdb drm_connector_attach_dp_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d040a7 drm_connector_attach_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ba540d drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77dee5b drm_gem_dmabuf_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83c5bfb drm_noop EXPORT_SYMBOL drivers/gpu/drm/drm 0xe898f2d4 drm_crtc_check_viewport @@ -2121,41 +2121,37 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf36dcea4 mlx4_assign_eq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa3bb49d mlx4_SET_PORT_user_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd7f197d mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0196acd2 mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x020557b9 __tracepoint_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x023b66a7 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02db54e1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c19562 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05ef380c mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x071edf8a mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07276c22 mlx5_core_destroy_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x073d9ee7 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ca89113 mlx5_core_create_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb34eaf mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f09126d mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1015587f mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1004e118 mlx5_eswitch_reg_c1_loopback_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x106f3ca0 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1235d5d3 mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1415e3cc mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16261094 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1629fbc7 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16ae233c mlx5_lag_is_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1777f278 mlx5_core_query_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17de9d8d mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f01b17 mlx5_lag_is_sriov EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eede13e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f317343 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd85bb7 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fb73e7e mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ba4fe2 __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x246e237b mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24798ff1 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27b52ae7 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29081a80 mlx5_get_flow_namespace EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b5f0015 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d225862 mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec85e5a mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302b5f9e mlx5_rl_remove_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30b0b3a2 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31cc4afe mlx5_lag_get_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c59cc2 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33f6d71b mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x342d6cc7 mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3571fc42 mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3790f628 mlx5_cmd_cleanup_async_ctx @@ -2167,45 +2163,45 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f04041a mlx5_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4054cda2 mlx5_rsc_dump_cmd_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4097614a __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x449c3731 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42544172 mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4728b2a1 mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b2f2810 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ce33974 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e261216 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e8fc556 mlx5_eswitch_get_vport_metadata_for_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ea4b33f mlx5_core_alloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f894dfb mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534f6a21 mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5359674b mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542a83bc mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b8fcd9 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x564ca539 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58f37a48 mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0afe88 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c18ab91 mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c83ee4a mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e61d549 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de96221 mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6378bbd2 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63942d65 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x637f74d6 mlx5_vf_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65758b49 mlx5_eswitch_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65e40e3a mlx5_core_alloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6749b628 mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67ae6252 mlx5_core_query_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6840eac3 __tracepoint_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a126f2f mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a564659 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8339ce mlx5_lag_get_num_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8b2d9d mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa56725 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b275ddd mlx5_eswitch_vport_match_metadata_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e9047e0 mlx5_core_query_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71807d32 __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e4e92a mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73426086 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7446842c mlx5_debugfs_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x748a29d1 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76934d11 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7769404b mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78d5f744 mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79275583 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7938220a mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a980687 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a7117a5 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d7919a8 mlx5_cmd_create_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d98b885 mlx5_qp_debugfs_cleanup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8164fd8b mlx5_core_destroy_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x828411c9 mlx5_core_create_cq @@ -2214,11 +2210,12 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8917a446 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b3d1217 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c3a8e41 mlx5_eswitch_add_send_to_vport_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8db3d13a mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90090303 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b1079c mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92a5dad5 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3f01f1 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fc03195 mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92b926ca __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932b0b29 mlx5_eq_destroy_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f108d9 __tracepoint_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9707fdfb mlx5_core_query_mkey @@ -2226,8 +2223,9 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bcc6d2f mlx5_core_create_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bfeef7d __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa03a5d4d mlx5_comp_irq_get_affinity_mask EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa043516c mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0bafc5b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2333f03 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa33fbc6f __SCK__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4b57159 mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d88f68 mlx5_mpfs_add_mac @@ -2236,30 +2234,25 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9d72921 mlx5_fs_remove_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac5ffd13 mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacaedcbb mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad371724 mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadce8166 mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaea4f8bf mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb037c5a0 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb183e4ef mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1fc95c5 mlx5_core_destroy_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2a4b8d1 __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb465e6b3 mlx5_eswitch_get_vport_metadata_for_match EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb610a9d2 mlx5_eq_disable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7095f57 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb97b8b63 __SCK__tp_func_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaa5e83f mlx5_cmd_out_err EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac4445c mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1a08aeb mlx5_lag_get_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2ec46f7 mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4c9117c mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8c1d56c mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaaf6380 mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc686001 mlx5_core_create_tir @@ -2267,28 +2260,35 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1143c61 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1350b3b mlx5_eq_get_eqe EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3716846 mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd58526c4 mlx5_core_destroy_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6bde8c5 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd713d4f7 mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd859a651 mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd894caf1 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8f39226 mlx5_lag_is_sriov EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaf56898 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaf64f04 mlx5_sriov_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb622108 __SCT__tp_func_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd92e175 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde6a4003 mlx5_sriov_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0eeab4c mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1001dae mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe14614e9 mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe452d6c3 mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8e06241 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe737f98f mlx5_lag_get_slave_port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a3a460 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedc33713 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea35428a mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0ca51c1 mlx5_eswitch_get_vport_metadata_for_match EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0f642d0 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf11853b0 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b4bf4e mlx5_rdma_rn_get_params EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21e494b __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf48db479 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5cd9980 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7137ad8 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9731695 mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9fd90ba mlx5_debugfs_get_dev_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb7fd027 mlx5_packet_reformat_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash @@ -3518,22 +3518,22 @@ EXPORT_SYMBOL net/mac802154/mac802154 0xb5049b5b ieee802154_xmit_hw_error EXPORT_SYMBOL net/mac802154/mac802154 0xbc0b101e ieee802154_register_hw EXPORT_SYMBOL net/mac802154/mac802154 0xea8c0ac2 ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x04024a29 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ce6a904 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x226c22f6 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3431dd2c ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x505a4128 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63efc66b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x64870d79 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8be05e14 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8dd78818 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96152604 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x964da91c ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97b83215 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa40b55b6 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc0199328 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x24dc2506 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2de93205 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ed31606 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d61b9ab unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x930de5c0 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9aa469b6 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9cd20be1 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9dff095e ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa7bc3fe0 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb275d6e4 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb392e5e8 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba9aaf92 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9fbbae9 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd3554e42 ip_vs_nfct_expect_related EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf12a9740 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf95fa5a5 register_ip_vs_app EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6106c068 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find @@ -3653,25 +3653,25 @@ EXPORT_SYMBOL net/phonet/phonet 0x8de69317 phonet_proto_register EXPORT_SYMBOL net/phonet/phonet 0x972888ac pn_sock_get_port EXPORT_SYMBOL net/phonet/phonet 0xb83a001b phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x045ddb70 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x052b203d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fb2a6fb rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0afd09a3 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1f7e9105 rxrpc_get_server_data_key EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id EXPORT_SYMBOL net/rxrpc/rxrpc 0x32db4769 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3f52dc35 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e19bf5c rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e030901 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x90409fa6 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x938d4059 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb2ee1ff0 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbfe425c9 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcab8cdb3 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3712e819 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3eb74297 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x542a2193 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x70057c03 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9276290a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x946ef234 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x981e890c rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x98bc28e8 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa4311e34 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc409e646 rxrpc_kernel_abort_call EXPORT_SYMBOL net/rxrpc/rxrpc 0xce0d7216 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdb611db4 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdbd05920 rxrpc_kernel_get_peer EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc2d9ff0 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0xec476b4f rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe5644e18 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0xf38d4cc1 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa78397b rxrpc_kernel_get_epoch EXPORT_SYMBOL net/sctp/sctp 0x853377b5 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x1aac279f __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback @@ -3689,17 +3689,17 @@ EXPORT_SYMBOL net/smc/smc 0xcc252080 __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xe91e73cc __SCK__tp_func_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xf9a467e1 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x322a3aba gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6a3b9af1 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa0693f0d gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3d6cebd3 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x51442910 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x56885b6f xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x1e7460d9 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x341978c6 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x60d50eac tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xac450d05 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x02f08227 tls_get_record +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x14c8edb9 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2fc1ec72 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb1b1f24a gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x190e5701 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x33f78524 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7e6c6692 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x4904f77b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x7e5561e1 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xac8069ae tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xfce3be90 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x3fc3a0f4 tls_get_record EXPORT_SYMBOL net/wireless/cfg80211 0x019502e6 __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x05bba01c cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create @@ -3940,7 +3940,6 @@ EXPORT_SYMBOL vmlinux 0x04540b32 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047c948d xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x049fe2fb blk_mq_alloc_request @@ -3995,7 +3994,6 @@ EXPORT_SYMBOL vmlinux 0x0690ee96 ip6_xmit EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 EXPORT_SYMBOL vmlinux 0x06ba3ffa pci_enable_wake -EXPORT_SYMBOL vmlinux 0x06bd4d2a xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal EXPORT_SYMBOL vmlinux 0x06d12019 vga_switcheroo_register_audio_client @@ -4115,6 +4113,7 @@ EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0x0c581d7a pipe_lock EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c79d176 inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0x0c9b1e79 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x0c9f9e84 configfs_undepend_item EXPORT_SYMBOL vmlinux 0x0ca6c023 __folio_put @@ -4177,6 +4176,7 @@ EXPORT_SYMBOL vmlinux 0x0f17b8d2 __ip_options_compile EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu EXPORT_SYMBOL vmlinux 0x0f2846a7 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x0f2a6647 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x0f300471 simple_transaction_release EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero EXPORT_SYMBOL vmlinux 0x0f4e574c set_blocksize @@ -4261,7 +4261,6 @@ EXPORT_SYMBOL vmlinux 0x127feaa0 may_umount EXPORT_SYMBOL vmlinux 0x129fd69b tcp_recvmsg EXPORT_SYMBOL vmlinux 0x12b4229b skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x12b8bfc1 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x12c85357 devm_memremap EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12e240a4 jbd2_fc_end_commit @@ -4272,7 +4271,6 @@ EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource EXPORT_SYMBOL vmlinux 0x1312334a uart_resume_port -EXPORT_SYMBOL vmlinux 0x13136a01 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark EXPORT_SYMBOL vmlinux 0x132d9185 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x13323d0c __ClearPageMovable @@ -4357,6 +4355,7 @@ EXPORT_SYMBOL vmlinux 0x169f1beb of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc EXPORT_SYMBOL vmlinux 0x16aa6ebc copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x16b6a045 __aperture_remove_legacy_vga_devices EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table EXPORT_SYMBOL vmlinux 0x16dc2ae7 blk_rq_init EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init @@ -4366,6 +4365,7 @@ EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler EXPORT_SYMBOL vmlinux 0x17157590 softnet_data EXPORT_SYMBOL vmlinux 0x173c88da freeze_super +EXPORT_SYMBOL vmlinux 0x174142f9 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x17480c1f __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock EXPORT_SYMBOL vmlinux 0x1763a502 inet_proto_csum_replace16 @@ -4387,6 +4387,7 @@ EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x18a3f364 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x18a8b6ff finish_swait +EXPORT_SYMBOL vmlinux 0x18ad42a7 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe EXPORT_SYMBOL vmlinux 0x18e27717 param_set_copystring EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start @@ -4553,7 +4554,6 @@ EXPORT_SYMBOL vmlinux 0x215d5997 nf_log_register EXPORT_SYMBOL vmlinux 0x216806f2 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x216c6636 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x216e8ac3 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x217164bf mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event EXPORT_SYMBOL vmlinux 0x21786112 tcp_ld_RTO_revert @@ -4638,7 +4638,6 @@ EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x250e8e2f tcp_release_cb EXPORT_SYMBOL vmlinux 0x2556b04a param_get_hexint -EXPORT_SYMBOL vmlinux 0x2559e42d inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x2564b179 scsi_device_set_state EXPORT_SYMBOL vmlinux 0x25653377 may_setattr EXPORT_SYMBOL vmlinux 0x2565661e tcp_v4_send_check @@ -4840,7 +4839,6 @@ EXPORT_SYMBOL vmlinux 0x2d76b9e9 release_sock EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da28bc8 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x2da37b0e blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x2da80b57 _copy_from_iter EXPORT_SYMBOL vmlinux 0x2db2e798 mr_mfc_seq_next @@ -4873,7 +4871,6 @@ EXPORT_SYMBOL vmlinux 0x2ee31d4a proc_set_user EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f2b667d xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f310aff page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device @@ -5007,7 +5004,6 @@ EXPORT_SYMBOL vmlinux 0x3550f865 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x355c3ad1 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356afec3 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x356dcf34 copy_string_kernel EXPORT_SYMBOL vmlinux 0x358e436d lookup_one EXPORT_SYMBOL vmlinux 0x358f5f6a param_ops_bint @@ -5329,6 +5325,7 @@ EXPORT_SYMBOL vmlinux 0x43f494b2 scsi_print_command EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x441d7a5e touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x442528dc xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x442c2a00 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x443510cb __put_devmap_managed_page_refs EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access @@ -5490,6 +5487,7 @@ EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node EXPORT_SYMBOL vmlinux 0x4bd4e6dd mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0x4be4e16c neigh_table_init +EXPORT_SYMBOL vmlinux 0x4beaab7b sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x4bec69e0 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf73240 pci_read_config_byte @@ -5501,6 +5499,7 @@ EXPORT_SYMBOL vmlinux 0x4c321293 phy_connect_direct EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast EXPORT_SYMBOL vmlinux 0x4c5e6652 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x4c876bde xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x4c8cbf4e netdev_features_change EXPORT_SYMBOL vmlinux 0x4c904383 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base @@ -5512,8 +5511,8 @@ EXPORT_SYMBOL vmlinux 0x4cf7e18f __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x4d163910 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d31f948 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d72dd3b seq_lseek +EXPORT_SYMBOL vmlinux 0x4d78f480 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d82a89c tty_do_resize EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d945acc pnpacpi_protocol @@ -5623,7 +5622,6 @@ EXPORT_SYMBOL vmlinux 0x516ed1df sock_edemux EXPORT_SYMBOL vmlinux 0x517180da nf_ip_checksum EXPORT_SYMBOL vmlinux 0x51733463 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x51a20f85 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0x51a56340 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled @@ -5948,6 +5946,7 @@ EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x60bf56a9 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60dc74bb xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x60dcf740 reuseport_alloc EXPORT_SYMBOL vmlinux 0x60e9c99b t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x60ec85e7 icmp_ndo_send @@ -6072,7 +6071,6 @@ EXPORT_SYMBOL vmlinux 0x661f1733 folio_mark_accessed EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x66349bd3 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x663620e5 path_is_under EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt @@ -6127,6 +6125,7 @@ EXPORT_SYMBOL vmlinux 0x6880140b vme_dma_list_free EXPORT_SYMBOL vmlinux 0x68a6d05c inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x68cea4e5 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x68dd3396 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x68f91cbf seq_read_iter EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0x69054396 pci_prepare_to_sleep @@ -6141,7 +6140,6 @@ EXPORT_SYMBOL vmlinux 0x6982adc3 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69b4bc7f xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69f7cc5d block_write_begin @@ -6304,6 +6302,7 @@ EXPORT_SYMBOL vmlinux 0x70a0031c phy_detach EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup EXPORT_SYMBOL vmlinux 0x70bb7de2 __x86_indirect_jump_thunk_rbp +EXPORT_SYMBOL vmlinux 0x70c0d93f xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x70e00851 folio_end_private_2 EXPORT_SYMBOL vmlinux 0x70f25751 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x710056ac abort @@ -6405,7 +6404,6 @@ EXPORT_SYMBOL vmlinux 0x7648d378 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766ef806 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc EXPORT_SYMBOL vmlinux 0x767e300d input_inject_event @@ -6465,7 +6463,6 @@ EXPORT_SYMBOL vmlinux 0x78cc24d1 open_exec EXPORT_SYMBOL vmlinux 0x78da262f flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78fb1d67 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x79064c04 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x79159b6a devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x791a76c0 generic_file_fsync @@ -6499,7 +6496,6 @@ EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7accc899 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7ae3e543 fscrypt_encrypt_pagecache_blocks @@ -6658,6 +6654,7 @@ EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec EXPORT_SYMBOL vmlinux 0x82907b2c dquot_free_inode EXPORT_SYMBOL vmlinux 0x82957b4d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x82a7e00f __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x82aad106 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x82c1048f ip_frag_next EXPORT_SYMBOL vmlinux 0x82c2660b qdisc_warn_nonwc @@ -6780,6 +6777,7 @@ EXPORT_SYMBOL vmlinux 0x8858a550 dev_printk_emit EXPORT_SYMBOL vmlinux 0x88597d4d kfree_skb_partial EXPORT_SYMBOL vmlinux 0x88615430 input_reset_device +EXPORT_SYMBOL vmlinux 0x88618594 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x8864ad84 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x88734fd5 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x887c9bd5 ip6tun_encaps @@ -6923,6 +6921,7 @@ EXPORT_SYMBOL vmlinux 0x8f064c1e pci_enable_device EXPORT_SYMBOL vmlinux 0x8f1d2d44 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f28a817 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x8f35ebfe sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x8f3904e2 pci_get_class EXPORT_SYMBOL vmlinux 0x8f761ebc remove_proc_subtree @@ -6981,7 +6980,6 @@ EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get EXPORT_SYMBOL vmlinux 0x9244bac0 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x925173a2 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x9252d49d sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x925da4d3 do_splice_direct @@ -7093,6 +7091,7 @@ EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x974b3ec8 tty_port_close_end EXPORT_SYMBOL vmlinux 0x975073a6 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x9754dab2 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x975f8652 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base EXPORT_SYMBOL vmlinux 0x9766949e readahead_expand @@ -7118,7 +7117,6 @@ EXPORT_SYMBOL vmlinux 0x984dde3b elv_rb_find EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 EXPORT_SYMBOL vmlinux 0x985b5ba5 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x986ed9b3 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x9874262a inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x9899e70c clk_bulk_get_all EXPORT_SYMBOL vmlinux 0x98a0de7a __SCK__tp_func_kmem_cache_alloc @@ -7165,7 +7163,6 @@ EXPORT_SYMBOL vmlinux 0x9a47f314 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a80cdcf __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x9a91cba0 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x9a94b4c0 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x9aa2ca94 __scsi_print_sense EXPORT_SYMBOL vmlinux 0x9aad73b6 devfreq_unregister_notifier @@ -7227,6 +7224,7 @@ EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x9cf08c04 ip_defrag EXPORT_SYMBOL vmlinux 0x9cf1a033 fiemap_prep +EXPORT_SYMBOL vmlinux 0x9cf73b2e xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x9cfcb5e6 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier @@ -7348,8 +7346,8 @@ EXPORT_SYMBOL vmlinux 0xa1096f9e unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xa119d449 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xa11a3e62 cont_write_begin +EXPORT_SYMBOL vmlinux 0xa122fb47 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xa1281673 end_page_writeback -EXPORT_SYMBOL vmlinux 0xa14b8994 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xa1623a85 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0xa17bd37a inet_del_protocol EXPORT_SYMBOL vmlinux 0xa18a2c3c thaw_bdev @@ -7372,7 +7370,6 @@ EXPORT_SYMBOL vmlinux 0xa26c63ea __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa28f6504 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa29373b8 xfrm_lookup EXPORT_SYMBOL vmlinux 0xa2aca819 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xa2bdce36 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xa2c14ead kernel_param_unlock @@ -7438,7 +7435,6 @@ EXPORT_SYMBOL vmlinux 0xa50709cb pci_enable_ptm EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa523ca59 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock EXPORT_SYMBOL vmlinux 0xa59cf5f4 tcp_sock_set_keepintvl @@ -7602,7 +7598,6 @@ EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0109f2 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode EXPORT_SYMBOL vmlinux 0xad4760d9 tcf_em_tree_dump @@ -7675,6 +7670,7 @@ EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xb054130f kmem_cache_create EXPORT_SYMBOL vmlinux 0xb055e846 vga_put +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb058d20f vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state @@ -7753,6 +7749,7 @@ EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb38d3d3d __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic EXPORT_SYMBOL vmlinux 0xb3ab2b38 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xb3c05b98 sock_recvmsg @@ -7788,6 +7785,7 @@ EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0xb5442632 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xb55396ee mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xb57b63ed xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable EXPORT_SYMBOL vmlinux 0xb592bc58 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev @@ -7933,6 +7931,7 @@ EXPORT_SYMBOL vmlinux 0xbac12e76 scsi_target_resume EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len EXPORT_SYMBOL vmlinux 0xbad0a5a2 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xbad5ff3e xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xbaf1f291 clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset @@ -8160,7 +8159,6 @@ EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xc6779f92 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xc677eefc xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xc68f2601 kernel_connect EXPORT_SYMBOL vmlinux 0xc690a3ea flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc @@ -8170,7 +8168,6 @@ EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware EXPORT_SYMBOL vmlinux 0xc6d5ae24 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xc6e062f0 param_set_ullong -EXPORT_SYMBOL vmlinux 0xc6e1dd00 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc6f4d769 config_group_init_type_name @@ -8202,7 +8199,6 @@ EXPORT_SYMBOL vmlinux 0xc8790b23 dst_init EXPORT_SYMBOL vmlinux 0xc87f63af pneigh_enqueue EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8880ddf xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xc88d022b key_task_permission EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8a7d2b2 zpool_unregister_driver @@ -8375,15 +8371,14 @@ EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface EXPORT_SYMBOL vmlinux 0xd0ce982b simple_release_fs +EXPORT_SYMBOL vmlinux 0xd0d88920 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xd0f081dd dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key EXPORT_SYMBOL vmlinux 0xd10d673c set_user_nice -EXPORT_SYMBOL vmlinux 0xd12cd8d6 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd1453095 key_reject_and_link EXPORT_SYMBOL vmlinux 0xd153fcd2 setattr_copy -EXPORT_SYMBOL vmlinux 0xd15df6fa __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xd171db80 tcp_make_synack EXPORT_SYMBOL vmlinux 0xd18a8429 unregister_md_personality EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count @@ -8412,6 +8407,7 @@ 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 0xd329e109 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xd332b355 param_ops_short EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xd33c19ef nvdimm_namespace_detach_btt @@ -8606,6 +8602,7 @@ EXPORT_SYMBOL vmlinux 0xdca4f1a2 dm_kobject_release EXPORT_SYMBOL vmlinux 0xdcba0f22 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdcd28595 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xdcd501be __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xdcdbb5e3 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress @@ -8641,7 +8638,6 @@ EXPORT_SYMBOL vmlinux 0xde2e4455 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0xde4448c6 d_splice_alias EXPORT_SYMBOL vmlinux 0xde4ccc43 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler EXPORT_SYMBOL vmlinux 0xde5eaa21 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0xde61c000 sock_no_sendpage @@ -8698,6 +8694,7 @@ EXPORT_SYMBOL vmlinux 0xe08a7489 dev_uc_del EXPORT_SYMBOL vmlinux 0xe08cecf5 param_get_byte EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe09da130 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0c9780a key_link @@ -8811,6 +8808,7 @@ EXPORT_SYMBOL vmlinux 0xe52d8b46 __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0xe53aba0f scsi_device_lookup EXPORT_SYMBOL vmlinux 0xe5413624 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xe5560102 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xe5676512 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0xe56e38c0 netdev_err EXPORT_SYMBOL vmlinux 0xe5780739 __dev_kfree_skb_any @@ -8940,6 +8938,7 @@ EXPORT_SYMBOL vmlinux 0xeba42157 submit_bio EXPORT_SYMBOL vmlinux 0xeba45197 pci_free_irq EXPORT_SYMBOL vmlinux 0xebc027d7 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xebc0da71 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0xebc65eb1 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xebc721a9 misc_deregister EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point @@ -8989,9 +8988,11 @@ EXPORT_SYMBOL vmlinux 0xeddd2068 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xededb7e2 sock_bind_add EXPORT_SYMBOL vmlinux 0xedf4dc67 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xee021394 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0xee06e6b8 kern_path_create EXPORT_SYMBOL vmlinux 0xee15dc87 drop_super +EXPORT_SYMBOL vmlinux 0xee2b1d9d xfrm_lookup EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable EXPORT_SYMBOL vmlinux 0xee38a20e __x86_indirect_jump_thunk_r10 EXPORT_SYMBOL vmlinux 0xee3eb952 tcp_create_openreq_child @@ -9003,6 +9004,7 @@ EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9febb4 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeec64614 eth_header EXPORT_SYMBOL vmlinux 0xeed439d0 netlink_rcv_skb @@ -9123,6 +9125,7 @@ EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put EXPORT_SYMBOL vmlinux 0xf3fb74e6 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xf400c5c6 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0xf40dcacd put_ipc_ns EXPORT_SYMBOL vmlinux 0xf423db5a nf_getsockopt EXPORT_SYMBOL vmlinux 0xf43ab248 xfrm_trans_queue @@ -9175,6 +9178,7 @@ EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf69d8e7a xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xf6a60b6b input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xf6aa0795 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xf6ea60b2 ip_sock_set_freebind @@ -9303,12 +9307,10 @@ EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc487b08 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xfc50f484 free_task EXPORT_SYMBOL vmlinux 0xfc5a1d7a jbd2_journal_start EXPORT_SYMBOL vmlinux 0xfc5d2c44 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xfc6529ac pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xfc6bad73 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xfc6e5811 register_fib_notifier EXPORT_SYMBOL vmlinux 0xfc74436a sk_alloc @@ -9409,359 +9411,359 @@ 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 0x00908c68 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x011fa4f4 kvm_get_running_vcpu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0148e467 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01645f33 kvm_apic_has_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ca6a80 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01f60207 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0281a72c kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02cc3329 kvm_irq_has_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x034a19dc __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x035bf47d kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03d01230 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03e77936 kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x045670b9 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0528b04d kvm_set_cr3 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05efccc2 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0667981a kvm_arch_has_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06881c17 __tracepoint_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06a3bdd7 __tracepoint_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0903d8cd kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09176216 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x098da0fa kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08dbc788 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08ef1941 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x090d66e8 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09d956cd __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0afff424 kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b7993e4 kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b9dc7e2 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bac2c34 kvm_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cc5804a __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cd7a1ec kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e026895 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1044d972 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d3606df kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d9acea0 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e2743c8 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f653cfc kvm_vcpu_on_spin EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1177860e kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x129b5c08 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12b3be19 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130bf083 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13d3ce9c kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13fa7c34 kvm_gpc_deactivate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14dcf013 __SCK__tp_func_kvm_cr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1651e019 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16332e52 kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x183e1089 kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1877eca7 kvm_read_guest_virt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18f2b36a __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x191a90e7 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19265db9 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x193c6ee0 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a20a79e kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x196165ce kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19ff3c2e kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b5d13d3 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b9b3843 kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bbd8b2a __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c7cb37b kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c83eaba vcpu_put EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b139a __SCT__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b3d2b kvm_set_msi_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d32bf5a __tracepoint_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d65d4f6 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f11d1cb kvm_gpc_deactivate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x205e4412 kvm_apic_send_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x206a94e7 __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20b38896 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20c0203b kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21f7baf7 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x226f02f5 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2033045b kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20598169 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22652325 kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x236b0b6e kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2498fba7 __SCK__tp_func_kvm_avic_doorbell EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26c72ce2 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26ea4126 kvm_cpuid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27b501d7 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29e01ab4 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a7531a7 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b80931d __SCK__tp_func_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bcf3aef __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb0616 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d248f46 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d3e5bac kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e7dad1a kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30a7b8a8 __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31647e86 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e54661b kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e78d687 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f85bc33 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317e3d92 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31edf588 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31fb794c kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x322d670c kvm_mmu_free_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3289876e __tracepoint_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33e9b44e kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x340bcf81 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x341e1dd0 kvm_page_track_register_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x346114c8 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x348e2730 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34c16fd1 __tracepoint_kvm_fast_mmio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36672646 __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3795d08e __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3806aedc kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38748bbe hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3733820d kvm_apic_update_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38a3ca48 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3949d417 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x394c4205 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39558756 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x397ecc5d gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x399e17d9 kvm_is_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a4d0a3f kvm_vcpu_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd9e582 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3acccee9 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b30a10e kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bb7b805 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c12bb54 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c31c1e7 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cd5133a kvm_apic_update_ppr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d9d2683 kvm_apic_update_ppr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dabf108 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dce2138 kvm_emulate_wbinvd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3df565be __tracepoint_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e55a066 __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e7e7485 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f2c75ba kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f4f2cdd kvm_lapic_find_highest_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f599186 hv_remote_flush_tlb -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f9cff71 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x412c99bf kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fcb583f kvm_fast_pio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41dd8eb4 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42615a0e kvm_x86_vendor_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42b293d2 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42d44e17 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42d5f992 kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42f8837b kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43356e08 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x447ff008 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41edfc98 kvm_fixup_and_inject_pf_error EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44a18b2c __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44ab0030 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44ec0882 handle_ud EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46b1c15f kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x468a3fe7 kvm_skip_emulated_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x473acd5a __SCK__tp_func_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474850b8 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474da061 kvm_set_or_clear_apicv_inhibit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x479cb832 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47b9ab85 kvm_emulate_instruction_from_buffer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48c7f176 __SCK__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49287799 __SCK__kvm_x86_get_cs_db_l_bits EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1333fa mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d6eb436 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a270e19 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4baaf3e7 kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c2d4c57 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cbc3de9 __traceiter_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51001e7c kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x512eecaf kvm_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51deadbc __SCK__tp_func_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5598086e kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x542da480 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54e78257 kvm_post_set_cr0 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55ac7bdb file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f2a6c9 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f4b781 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5784ead5 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f6d740 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x562cccb6 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x563d2933 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56be0bff kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56e6c58b kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5750dece kvm_hv_assist_page_enabled EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58ea34cc __SCK__tp_func_kvm_nested_intr_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59a5e33e kvm_gpc_check EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a063c44 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b481883 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b69d0da kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bb41c5e kvm_vcpu_apicv_activated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d60c3b4 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cd8a0cc kvm_read_guest_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dfc9c25 kvm_get_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fed34e5 kvm_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x617c2822 kvm_complete_insn_gp EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62a7f3dc __x86_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x667aaeab kvm_msr_allowed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66a1a209 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63d27c9e kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x645017ff __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64debd15 kvm_get_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x686f7d4a kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x675ad1f4 kvm_mmu_free_guest_mode_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x687b78fc kvm_x86_vendor_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x691a9643 kvm_deliver_exception_payload EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6982a5e6 __tracepoint_kvm_vmgexit_msr_protocol_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc792a4 kvm_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c79f6ba kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c01c9bc kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c6e42d3 kvm_require_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c9822e0 kvm_emulate_ap_reset_hold EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d17eeb6 __tracepoint_kvm_avic_doorbell EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ee8ab7c kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dd6db82 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x701e1696 kvm_gpc_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70afe10d kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70b12c7a kvm_arch_end_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x712dfff3 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71de6302 kvm_gpc_refresh EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72008a1c __SCK__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72ea739b kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x735a06a2 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x737b945a kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x743734c7 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x727fd09b kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72e6e02f kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x731a7cbd kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74322089 gfn_to_pfn_prot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x747a70af __SCK__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x750a5657 hv_remote_flush_tlb_with_range EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7540460c kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7532e3f0 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75e290f0 kvm_pmu_trigger_event EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x769b13c4 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76d257d3 kvm_write_guest_virt_system EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x771e0dfd __tracepoint_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77cb10bd __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77fa132a kvm_emulate_rdpmc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78ba4e51 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78c88422 kvm_cpu_get_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d6115c __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79cb9111 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79fd00e7 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ba848f1 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ba2d287 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c2dbda5 kvm_vcpu_map EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d5f6508 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dbbcbc0 kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e38f28c kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e663e00 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ce62bb4 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d3e2ea1 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f31e68b kvm_apic_set_eoi_accelerated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f51547e __traceiter_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80123593 kvm_emulate_halt_noskip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80212235 kvm_update_dr7 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8023c87b __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8062f614 kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849b2443 __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8584b1b8 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x873233ad kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a2ea1f0 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x866b1223 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e0262c kvm_find_cpuid_entry_index EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8afdc25f __tracepoint_kvm_avic_ga_log EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bfcba5a kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ba715db kvm_emulate_wrmsr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bfcef85 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c82f3d2 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c93ef4c gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d0986ba kvm_update_cpuid_runtime -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8dff5e12 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e81b30b kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ef29422 kvm_mmu_gva_to_gpa_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x901370e9 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x908c9ab0 kvm_mmu_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c6364d kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x916216d6 x86_decode_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92cf1a85 kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93768979 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9372e9a5 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97e2c572 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x988bb66d kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a8de45b kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cef42e8 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94ee0a51 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x958b8d90 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95962364 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95a1450a vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96cad963 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ab9b8b4 kvm_requeue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d2be32d gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e4dfef7 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e8c37a8 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f10c7e5 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e79b3e9 kvm_get_msr_common EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fc4e71d handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa030ec23 kvm_vcpu_kick EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa093c49a __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1644350 kvm_arch_no_poll EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2339eac kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2fa7e4e load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2fefd78 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa30f1a3f kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4a7351d kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa584a59f kvm_apic_match_dest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa636c79b kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa59cf330 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa75d0ad5 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8a83fcd __SCK__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8db5b47 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8e685ea kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa97f85a2 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9960eaa mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa12510e kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa2f2803 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabf94e28 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xada593a9 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb16e9af7 kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb17a1741 kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1b54f46 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb29a670c kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3277673 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaafc7d10 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xace93941 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad4585ce kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad5b994b kvm_emulate_mwait EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3adada3 kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb424cab3 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4d5cd3c kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb51bea08 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7eac467 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3d8a742 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb53a69fe kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb58af5aa kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5ddf59d kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7644afd kvm_queue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb859f1fd __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb90f87cd kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8c60a58 kvm_x86_vendor_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba90ae02 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb145459 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb3acf4c kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb6c9bd4 kvm_mmu_invlpg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbfd2510 __SCK__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc000b48 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc73f4e8 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcc2c6f2 kvm_arch_start_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcc4903e __SCK__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd126f42 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbce2e995 kvm_sev_es_string_io EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe2fe365 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe8125a7 __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf0fe9ba kvm_update_cpuid_runtime EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf65587f __tracepoint_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc203cb0e __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc286d921 kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc32e8913 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3cda9aa kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4339076 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc312de8b kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3ce0d6c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc43cb8d6 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc477755a kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4cda0c3 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5b68b90 kvm_vcpu_update_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5c80892 __tracepoint_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60da658 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6812a53 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6f4063e kvm_apic_send_ipi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8ad9bba kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc97b4eaa kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9d77f30 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc40da43 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca4afbc6 kvm_mmu_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcce4db23 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd084c68 kvm_read_l1_tsc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd9d6609 __SCK__tp_func_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce5ff487 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce6009b8 kvm_apic_write_nodecode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd16840a8 kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd46eaf21 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1b44184 kvm_handle_invpcid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4b5072d kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd53a37e1 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6c03765 kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7cadf87 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd91445ca kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd99aae85 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb88f9fc kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8905e32 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdac3f958 __kvm_is_valid_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd564f34 kvm_gpc_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddc07e88 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd85c7c8 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde6efcdf kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf1c27d5 kvm_gpc_activate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf38e44f __SCK__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf950a8a kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d583c5 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2474aab kvm_find_cpuid_entry_index -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe27592b7 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe517463e kvm_vcpu_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe587e4bf kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7c3dee9 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8d23433 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8e7dcc9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4ff49c6 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5074d9f mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe525c188 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5c53761 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe64c9973 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6cb489c kvm_gpc_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe71fe3ef kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe72793b3 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8c25ee5 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe914dda7 kvm_read_l1_tsc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9c40453 kvm_task_switch EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea57a5c9 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea609a98 kvm_handle_memory_failure EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeada679c __tracepoint_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaee83f0 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb10cf31 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb26575a __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec7e7f99 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec49671c kvm_destroy_vcpus EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedc94121 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee8e0ac9 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefbbaa18 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf056e759 kvm_wait_lapic_expire EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf103de65 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1bc06a0 kvm_load_guest_xsave_state EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf37062e0 kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3f2c8ef kvm_vcpu_update_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6365c69 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6cefb77 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf805b78d kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf83f5d59 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf89d8ac3 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6d61684 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6fcfadb kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf90ddbcf __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9f3ee52 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa6c28dc kvm_io_bus_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc4a2baa kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb9ee5c5 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc60a92d kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc9c2398 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd1134ce kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdbf1c7d kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe21049b gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe3674ae __SCK__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff1e336e kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffd5f745 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe75e23d kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff771bdc vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffdd2709 kvm_write_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfffe8e66 __tracepoint_kvm_write_tsc_offset EXPORT_SYMBOL_GPL crypto/af_alg 0x0231a5d3 af_alg_accept EXPORT_SYMBOL_GPL crypto/af_alg 0x04186b75 af_alg_sendpage @@ -11407,11 +11409,11 @@ EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf27f8bee rtl8366_vlan_del EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x059691de i40e_client_device_register EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x5abcd31c i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9ed996f0 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9fb7e094 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcd711330 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdfebdea3 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe543ce46 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2cec5e06 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5ac89096 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x645cc3b6 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb5cdde98 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf100e1b2 ice_add_rdma_qset EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03b7ba11 mlx4_unregister_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x046bfa97 mlx4_srq_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05e2ef17 mlx4_get_base_qpn @@ -11552,9 +11554,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f033e0 mlx5_db_alloc_node EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4860a6aa mlx5_set_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48881726 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x489adf31 mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a4cf4a6 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dc93bbc mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x516e90bd mlx5_query_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5233cc9b mlx5_frag_buf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x525ef9e9 mlx5_query_port_max_mtu @@ -11588,6 +11588,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa78ea0e0 mlx5_set_port_prio_tc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8a5eb50 mlx5_core_reserved_gids_count EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8619a8c mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbdf97a4 mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3875975 mlx5_nic_vport_unaffiliate_multiport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd06de0e8 mlx5_core_modify_hca_vport_context EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd213188d mlx5_set_port_admin_status @@ -11600,6 +11601,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6a6c721 mlx5_access_reg EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeae31216 mlx5_set_port_tc_bw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee45d0a8 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf48c833d mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf95fb699 mlx5_set_port_caps EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc9ef0d4 mlx5_query_nic_vport_node_guid EXPORT_SYMBOL_GPL drivers/net/geneve 0x18b7fcfc geneve_dev_create_fb @@ -12326,13 +12328,13 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace EXPORT_SYMBOL_GPL fs/lockd/lockd 0x087fa038 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2c679f77 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4188e80c lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4907d28b nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x725eacf2 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x69cab7ff lockd_up EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8bdca09a nlmclnt_done EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa5e99357 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb7ad16df lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd77ad161 nlmsvc_ops EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00a09595 nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01555b1d nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x027abd4c nfs_sb_active @@ -12346,14 +12348,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06abf477 nfs_check_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06cebc54 nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08d4a4e2 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098c279b nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098f4953 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c0a1078 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eab3168 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match EXPORT_SYMBOL_GPL fs/nfs/nfs 0x119ca1de nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x129a3706 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16da24d9 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e6df7e nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17c8f446 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1913bbeb __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x215bb8a7 nfs_pageio_resend @@ -12362,10 +12361,10 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x249f453c nfs_get_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b48a3c nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26d0d974 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275de4f6 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x291494d7 nfs_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a324e0a nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ae1e75a nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8fc09e nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x301cacb4 nfs_mkdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31514ef7 nfs_show_devname @@ -12389,57 +12388,51 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4208b92d nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d94f32 nfs_sb_deactive EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4382bbcd nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43f64266 __tracepoint_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44bdc610 nfs_commit_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453f17a1 nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4697324b nfs_show_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x469edcf2 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a66fd73 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ab81a78 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4be10cb2 nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ec9b206 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ee48140 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f895c86 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fcd7eee nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5130cda6 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa1ba21 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52014f85 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5297f377 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x557095d0 nfs_statfs EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56318eb7 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56d3573b put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e5827b register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57b3a7ad nfs_probe_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c77653 nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58c64c88 nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ae0f13e nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf7b18f unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ea84694 __tracepoint_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f4575af nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d6522a __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67367fe7 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67969869 __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a3905e4 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ace70b1 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e117833 nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x702788ec nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x703b5733 nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x731d54ef nfs_unlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78ce4fe3 nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7914e37c nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a5f5d0e nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac89c9b __SCK__tp_func_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b36d91f nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e69775f nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f2a5f71 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x812e677c nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x820f2dbb nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8353d7dc get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8643674c nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x872907bb nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8971f893 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cbbe8e9 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d8aeb9c nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eafa178 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eb25b8b nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f282282 nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f5b62c1 nfs_file_llseek @@ -12450,12 +12443,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92a31f1f nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x943369af nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9544e69b __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x955c14e6 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9698d266 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97b4059f nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values EXPORT_SYMBOL_GPL fs/nfs/nfs 0x992ae5db nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993124b6 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0674e3 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c06d084 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3591528 nfs_zap_acl_cache @@ -12463,29 +12455,37 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7ce7482 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9f08b49 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa578145 unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac039f04 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae271b94 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf7ed889 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafaf2707 nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb095c55c nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb19e01af nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f308ed nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ccea37 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6c73b1b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86b6ca6 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb2d3517 nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb7ce81e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe4b18c0 nfs_init_server_rpcclient EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36cdf2f nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc526c99b nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1afa965 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1bb52cd nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd38067b9 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6ac104e nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaf47769 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbc8129f nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcf00a07 __tracepoint_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdffb2384 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe25b6129 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe32cb6fd nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe408db88 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4c9f9a3 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ae56bf nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6625d9d nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe873ab79 nfs_link EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1d9ecc nfs4_label_alloc @@ -12494,6 +12494,8 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb195e99 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec076f44 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec95375a nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed8254da nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf02658a4 nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0434f1c nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf08e0348 nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6e71367 nfs_retry_commit @@ -12506,6 +12508,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x94247296 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x040bec5c __tracepoint_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07ffe94f nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b5da810 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b67e5d0 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10aaba72 pnfs_ld_write_done @@ -12525,7 +12528,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x261cf053 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27880490 __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2922c6c8 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ad73ab0 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x318528c5 nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3354df7f __traceiter_pnfs_mds_fallback_pg_init_write @@ -12560,6 +12562,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c8467d0 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6da02f2c __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f50f049 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72ff6d6e nfs4_put_deviceid_node @@ -12605,7 +12608,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbd13e1d pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbeb6e0f nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc70f419f nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc97feda0 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfa5beea __SCK__tp_func_pnfs_mds_fallback_write_pagelist @@ -12615,6 +12617,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6aa636d pnfs_ld_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb6d77c9 __tracepoint_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbb96539 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd148f8c nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0bb06c5 nfs_remove_bad_delegation EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe718a3b0 __traceiter_ff_layout_write_error @@ -12627,7 +12630,6 @@ 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 0xf99d2794 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd809009 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x18c191a0 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x662fe651 opens_in_grace @@ -12636,7 +12638,7 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4c82a6f2 nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9d12cb5a nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd36ebb2a nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xcffe1e48 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x8c6e43a3 nfsd4_ssc_init_umount_work 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 @@ -12802,13 +12804,13 @@ EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b08d051 dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d96cc88 dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19adfaeb dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x1acab7c8 dccp_setsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bc2a53c dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bdc2615 dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ed81880 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x20e49dd0 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x229877e2 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d022d50 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d99290b dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x3079bb42 dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a6a129d dccp_shutdown @@ -12894,9 +12896,9 @@ EXPORT_SYMBOL_GPL net/ife/ife 0xa2ab8432 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xbc08080c ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x24a24546 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4c2a693b esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6c840866 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x03380b46 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x79031c66 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa432a178 esp_output_tail EXPORT_SYMBOL_GPL net/ipv4/gre 0x4d1b6c7a gre_add_protocol EXPORT_SYMBOL_GPL net/ipv4/gre 0x57a84c01 gre_del_protocol EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x24a66682 inet_diag_register @@ -12907,7 +12909,7 @@ EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x92d09607 inet_diag_find_one_icsk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0c45853 inet_diag_msg_common_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd0af9158 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfd2f9b90 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfb7df7a3 inet_sk_diag_fill EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xd718092a gretap_fb_dev_create EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x47911938 arpt_alloc_initial_table EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc0079cc8 ipt_alloc_initial_table @@ -12932,9 +12934,9 @@ EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x75d112c7 tcp_vegas_init EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa1d8454e tcp_vegas_cwnd_event EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbd22da41 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5558228e esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd2a0cdfd esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdd755dd6 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb75e0f7c esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd92bfd71 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdbad0329 esp6_output_tail EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x86dcd718 ip6_tnl_rcv_ctl EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9f6c0489 ip6_tnl_encap_setup EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc0451e23 ip6_tnl_xmit_ctl @@ -13042,10 +13044,10 @@ EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb42b312 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf61a3585 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x145ec135 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9c339d3e ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaaab39ef unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xded269b5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2c4f0f76 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x75f264d3 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa3056fbf register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb854ab4f ip_vs_conn_in_get_proto EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x020482c2 nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6f25c3a8 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x988ea99c nf_conncount_init @@ -13402,10 +13404,10 @@ EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc9e18780 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0450dea9 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x33488dd3 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x642aebfa sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x8ae4ac93 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x17303416 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1c47659c sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5f63cca5 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x62e958dc sctp_get_sctp_info EXPORT_SYMBOL_GPL net/smc/smc 0x05a4c011 smc_unhash_sk EXPORT_SYMBOL_GPL net/smc/smc 0x43e98346 smcd_handle_event EXPORT_SYMBOL_GPL net/smc/smc 0x5c181b40 smc_proto @@ -13417,285 +13419,285 @@ EXPORT_SYMBOL_GPL net/smc/smc 0x95dfce79 smcd_handle_irq EXPORT_SYMBOL_GPL net/smc/smc 0xd221f48f 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 0x46286c16 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 0x521238f2 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xaf484414 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcd946ea8 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4c7054af svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x823d38fe gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9a3f14c3 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa0dfafb4 gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00bb1904 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00fcd3d9 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02905e22 rpc_num_bc_slots EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0393ddc3 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b216e6 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04de45f6 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f0f0db svc_rqst_alloc 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 0x07d5db2f xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07fec1d9 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x083e07ee xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08be07e2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08fc916d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b3e6a3 rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a54544e xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1e11a4 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b95b005 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd8c925 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c104f97 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea09164 svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eb74a5d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f09766b xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f429195 rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f811fa1 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe2173e svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x129a9799 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f8b6c3 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1129429b xdr_stream_decode_opaque EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x135a65f9 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167a0d3d xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x169738f2 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1709908d auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173d857e xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1824ccb0 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b34df8 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a01e138 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a8e080 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ff4b32 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ff5fd8 svc_bind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0c3509 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a984737 svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac4df73 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb89abb rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce07fee rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1adb842c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b69ac75 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cba8915 xdr_write_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1de19e0a xdr_decode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5d8809 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e61a193 svc_set_num_threads EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea2d218 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eea5ba6 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f8899db xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218ffe99 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219e4e9a svc_print_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a948dd rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2493b94f xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24e2c84a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2509b40a rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251e531b xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266ce6cd svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2833192d rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285fc929 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x256fe073 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e84282 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278797f1 rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b55d9d rpc_pton EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6ebaa6 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b556231 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bf63ec6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b41f7fc xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bac2914 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d8930c3 xprt_lock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e0cae03 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e6de8c4 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1910a9 rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8b53f9 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fca17c8 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x311c95e9 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314e7618 xdr_stream_move_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f12482 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x329814cb svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33409fb2 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f8ffd1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x347f3fe6 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36a73dd7 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c95a20 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3606f836 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x361d572f xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36994b73 svc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39766a87 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38a5e09d svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e6ae35 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39f27f11 svc_fill_symlink_pathname EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a43b914 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4bc4c5 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d4533ac rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac2dd74 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be63408 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c19e707 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f02e9c5 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8ff7e8 xdr_init_decode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x406c5d56 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x425c0732 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4281aead rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fe8e541 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff03a8b xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40b67c4b rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41fe042f __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435b83ff svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x457873b8 rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45924692 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45f6eff4 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468c5f08 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f757fa rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49b3fa56 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a938ba2 rpc_count_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b386af2 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cc1db07 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e0952a9 svc_addsock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f1ee347 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f9ed687 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5121fabe svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52219acc xdr_stream_decode_opaque_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53f32cf9 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x542c0518 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545199b1 rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x553174ea cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5614ff2d xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5750859c xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e3cdc1 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5866214f xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55da20ce rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x567c5ef6 svc_print_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59695f00 sunrpc_cache_pipe_upcall_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c088740 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d8da41f rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e96fc40 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed0add0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e01f67d xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e974ba5 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed6d9d1 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed8a60e xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601a43aa svc_xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61066fc6 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x612cbe80 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x613712fc svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x622d3493 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65038855 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ab1250 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6144d465 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c2bfb6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f7476e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62fb570d rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c7e8e5 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63defde7 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6463d24c svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a7f7b6 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c5722f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66cde0e8 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x680a4fb2 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676031b9 svc_rpcbind_set_version EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681a08de sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68cea960 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d10e42 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5e8a7c rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b392d6a rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4f3608 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b936fb4 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c4c6018 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6890598d rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c2379d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbbf6f1 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef3ae98 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x701678de rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704ccb1d rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7098b412 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x709d654b xdr_reserve_space_vec EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70a0830b rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7139a4ab svc_xprt_received 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 0x75989b34 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x773685c1 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787aeaca rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787f5e57 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d6ad0b bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x790ba601 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79740cba rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x797cc687 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79af7a7a rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79b5ba09 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bb700e6 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bbb83b8 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d47a53c xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d69acda rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7aa5a7 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d8074dc rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b8c2af svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b93317 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75ae8ba2 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76559b55 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775c24dd rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79638836 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab9f2e4 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bc73d3c rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be4f0cf rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ded1023 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea7d1e6 rpc_clnt_show_stats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f59b57a sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8011e751 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a54fc8 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80de68ce xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832c935d svc_recv EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x836cb7ce rpc_mkpipe_dentry EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83d49363 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8401c80d rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84ce1466 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8545ed7b xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d3b490 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866118d5 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86cdd72e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86da8f54 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a36627 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8684b8f9 svc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a494d9 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8946b06d auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b03f64f xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b14939c svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89440e26 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a128db9 rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b89f6ff cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e25bad1 rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901013cd xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9015cd57 rpc_clnt_probe_trunked_xprts EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901a5b15 cache_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901fd27a rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91053bee rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90ef9cc3 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ce9b88 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d274e0 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x954fb341 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95c5a579 svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95fed0f2 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96384687 svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9661c8da csum_partial_copy_to_xdr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a170be svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c90163 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97bf26a8 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aa63856 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aa7a837 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b208c39 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a3a35ed xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b1c4060 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b997733 xprt_complete_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d73e0ef sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7c854c svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f90d8d9 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa099801d rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67f9bc1 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7f61e10 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8bcdcdb svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c2bc8d rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa8ad039 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab39dce4 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae3258b7 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed059ee xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3aee80 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1092bab rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa291324f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3868dcf svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a8db1c rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa55d3568 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b59a78 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b999a2 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65647a2 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e45178 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80f8343 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa859a33d svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa91052b6 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaabaed7b rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaafd6844 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca95451 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd68495 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad9fd623 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf4d947c rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff0e180 rpc_clnt_xprt_switch_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1aefab1 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2d23052 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2e6f229 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f1453b rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb284c24e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4263323 rpc_put_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb581ab0f svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7823c32 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb79835ff xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9f8ae53 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb69b1fe8 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7c148c6 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba2e6d32 auth_domain_lookup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba95ad5f svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbc1093c xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5383c6 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd147773 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf51913d svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf905ade rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb463412 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd310072 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0595878 xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0b03c21 rpc_task_release_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2135d74 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2591db0 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc39d20af svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3f0c8d0 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12726e3 svc_age_temp_xprts_now EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc496e4ce rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ceb293 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ed8df9 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc739dcb9 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8d2c3b6 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d1c64a xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc796bd5a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89d00ce svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9378136 rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e0642b xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb051847 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca41e7aa xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccc9b513 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcce29a90 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd2917f9 xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd6473f5 cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdaa0831 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2df77a svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3411ed8 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3cddd16 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd705029d svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7516f3e rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd86eb25d rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a73825 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd968189e svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9fb13d7 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda000dc5 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbddd504 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce9138b4 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf8fed71 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfcee4d6 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd01047f0 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd043797f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c1a066 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1341f58 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd158e29c rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2639582 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a5fd0d svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6fa7f6d rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7cb907d rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8856cb9 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a657c8 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfb0b52 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc497cf3 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc625dd1 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcb5a52b svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde03e653 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf28c1f9 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde298ac2 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf74c608 rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff22b1e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0681e18 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08e49d4 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c1b5d3 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0df2145 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1d51a4d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe22bb298 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24a660b unix_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33904e9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe345262a rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6147b02 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6dcc0c4 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f0be59 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe704c2c6 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7169be6 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ac2077 svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d105a9 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8fad936 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe928b086 xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d0841a xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb54121b rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9ec23a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebd444ae rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee427a5e svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee4d4c35 auth_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf09cb257 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0f879f6 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf23ab5e5 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf25c65f9 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2c6611a rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2da26ce rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6717646 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1102525 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c2a58d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf55f22f9 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5c73dbd rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf68d5704 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf705547e xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d360f0 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf862c449 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf937580f rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9a1b674 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa73a1b2 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc14771 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc00d289 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd931a15 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9f9343 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/tls/tls 0x38257af4 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x839e33bb tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xac3c3b78 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xf938a893 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf889f18e xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9188821 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd0f987c xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0aba4a rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff33a50a xprt_write_space +EXPORT_SYMBOL_GPL net/tls/tls 0x054f7cfb tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x3e64d1ae tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x410baf6e tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xfb21f90f tls_device_sk_destruct EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x06003ab1 virtio_transport_stream_rcvhiwat EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10283b33 virtio_transport_release @@ -13790,6 +13792,7 @@ 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 0x000360dd hv_ivm_hypercall EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable EXPORT_SYMBOL_GPL vmlinux 0x00233fea ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x0030719c sk_free_unlock_clone @@ -13977,6 +13980,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features EXPORT_SYMBOL_GPL vmlinux 0x06f80b36 devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x07000e37 vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0x07040480 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x0717c1a3 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x07254328 usb_bulk_msg @@ -14026,7 +14030,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x08f21345 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x090d51cb find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x09145cd3 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x091ec249 blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig @@ -14080,7 +14083,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0ab886d0 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0adbb641 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x0ae40f9f tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x0ae4e2b5 led_init_core EXPORT_SYMBOL_GPL vmlinux 0x0ae61afd switchdev_bridge_port_unoffload @@ -14156,6 +14158,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0ddcf4f7 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x0ddedc87 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x0de4d681 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release @@ -14421,7 +14424,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18f42650 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19050bf8 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x190a13ae __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x19199b9b phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0x191f144e hwspin_lock_request @@ -14451,6 +14453,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19ee0c6f gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x19fd3edb ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x19ff4304 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x1a00c2c8 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab @@ -14505,7 +14508,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c1b905d tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1c39fdd9 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x1c444bba sock_map_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 @@ -14529,6 +14531,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1cc8908f pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x1cc91619 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x1cc91dff devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1cd44f98 hyperv_paravisor_present EXPORT_SYMBOL_GPL vmlinux 0x1cd554e3 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral EXPORT_SYMBOL_GPL vmlinux 0x1cf64ea0 ip_tunnel_dellink @@ -14546,7 +14549,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1d3b8882 dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x1d3b891f fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x1d506f95 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x1d59e1c9 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x1d667871 fscrypt_parse_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x1d746c5d acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x1d8becdf __ip_tunnel_change_mtu @@ -14564,6 +14566,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id EXPORT_SYMBOL_GPL vmlinux 0x1e380aa0 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x1e3817a3 sched_numa_hop_mask +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88de register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse EXPORT_SYMBOL_GPL vmlinux 0x1e49ff6a gpiod_direction_input @@ -14571,7 +14574,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print EXPORT_SYMBOL_GPL vmlinux 0x1e57c3f6 nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5e9977 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x1e6279ec strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1e78af0a xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e7f2a7e mbox_flush EXPORT_SYMBOL_GPL vmlinux 0x1e838e8e tpm_tis_remove @@ -14596,7 +14601,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1f11b202 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x1f273422 vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0x1f2d6c5c nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x1f2fea59 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x1f30852c __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x1f337de9 __vmbus_driver_register EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit @@ -14654,6 +14658,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy EXPORT_SYMBOL_GPL vmlinux 0x212761f3 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x212d6674 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x21440513 usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0x21449728 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0x2159c4e5 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x215a170b crypto_stats_ahash_final @@ -14717,7 +14722,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x23b1278e pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep EXPORT_SYMBOL_GPL vmlinux 0x23e577ba crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x23ff2fdb sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x2404b871 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0x2414714e devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const @@ -14735,7 +14739,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x24b28b0d do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x24c1f1a4 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x24c2f641 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x24c345dc __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x24c3c424 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x24d05807 gpiod_get_raw_value_cansleep @@ -14791,7 +14794,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x26cd1fa9 acpi_match_device EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any EXPORT_SYMBOL_GPL vmlinux 0x26ce312a ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x26d12694 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x26d7001b pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x26eb80fa vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier @@ -14862,6 +14864,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2954a726 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x29748ff6 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x299f0aae ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x29b93685 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x29cd95fb devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x29e95322 dw_pcie_wait_for_link @@ -14891,6 +14894,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b0345ce ip6_input EXPORT_SYMBOL_GPL vmlinux 0x2b216b61 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x2b25e911 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x2b2d1d9c xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x2b31185f debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x2b44536d dev_pm_qos_update_user_latency_tolerance @@ -14903,6 +14907,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b7d730b nvme_wait_reset EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x2ba62f0f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2bb8310a tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x2bb9a2e9 nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x2bcdc38b virtio_require_restricted_mem_acc EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs @@ -14932,7 +14937,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2ca5d3e1 hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ca89fe7 snp_issue_guest_request EXPORT_SYMBOL_GPL vmlinux 0x2cab95ad blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x2cd9aa66 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x2cddb8b8 sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x2ce919a3 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x2ce9f43e devm_regulator_put @@ -15021,6 +15025,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x30770f2e edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0x308d086a nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30db2b84 hv_ivm_msr_read EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu EXPORT_SYMBOL_GPL vmlinux 0x30e6a21f debugfs_create_regset32 @@ -15057,7 +15062,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x322ee93f wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x324a1d91 nvme_quiesce_admin_queue EXPORT_SYMBOL_GPL vmlinux 0x324c4ef5 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x324d23c2 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x3278f149 __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x327a2800 blkcg_root_css @@ -15084,7 +15088,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x330f6209 simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x33180e67 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3321263e bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x3323d8e5 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x33643336 devm_release_action @@ -15172,6 +15175,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x36ba4e32 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x36c75b4e context_tracking EXPORT_SYMBOL_GPL vmlinux 0x36db16f2 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x36e36dfc tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x36e84fdf inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x36fc44fd device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request @@ -15238,6 +15242,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x390c5ab0 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x3912618a ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x392b4faf xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x393a358c sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x393c1d6e pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x3959c940 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait @@ -15284,6 +15289,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic EXPORT_SYMBOL_GPL vmlinux 0x3afb0db6 ip_tunnel_rcv EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b083af4 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x3b200d6a regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x3b25f5bb pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x3b25fca5 usb_find_alt_setting @@ -15406,6 +15412,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3f530b5f devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x3f6e5b18 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x3f77791f pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x3f7ebdac xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f87bdd0 extcon_get_state @@ -15421,6 +15428,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x400932eb fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4015e805 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x401795da __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x401b3e88 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x401f1aeb regulator_set_pull_down_regmap @@ -15510,6 +15518,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x42dde045 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x42e4a5fb dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x42f14bcd fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x42f3a565 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x4303ba17 pci_p2pmem_alloc_sgl EXPORT_SYMBOL_GPL vmlinux 0x430c1169 iocb_bio_iopoll @@ -15547,6 +15556,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x442d49a7 acpi_dev_state_d0 EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x4432ebc3 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4442cfdb mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x446745a3 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x4474d59d __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested @@ -15576,7 +15586,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4562d500 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x4584168a acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x458c875d bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x4592acca spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x45978755 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages @@ -15652,7 +15661,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x482452b5 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4824b482 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire EXPORT_SYMBOL_GPL vmlinux 0x483a5ab1 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x4864a24e regmap_bulk_write @@ -15768,6 +15776,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4cf9349d io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x4cf9f7e0 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d01c35b mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x4d0677aa pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x4d0e171e fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x4d1d75b7 led_trigger_set @@ -15874,6 +15883,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x50fb8d31 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x5111b1d6 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x511381d0 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x511da01d percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x513c70d3 irq_gc_set_wake @@ -15886,7 +15896,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x518e9b61 devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x51a92bdc regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x51b1fba8 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x51c88a69 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x51cab376 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x51db6756 setup_udp_tunnel_sock @@ -15976,6 +15985,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x55118404 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x55135a7c kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x551c0419 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x552049be xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x5523a822 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data @@ -15993,7 +16003,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55d59817 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x55db2ad5 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x55dd426f sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x55ee0e27 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f7f50e skcipher_walk_complete @@ -16012,10 +16021,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x563982df regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56567feb tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x5666def0 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current EXPORT_SYMBOL_GPL vmlinux 0x569a05a5 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x56a0cd26 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x56b5821f unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x56d89e76 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x56df36e4 elv_register @@ -16067,6 +16076,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x58814575 pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0x5883ec09 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x5889dfb4 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x589b656d sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x58ac748a event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x58aee4a3 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x58b0d49e ata_pio_need_iordy @@ -16110,7 +16120,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0x59f95331 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x5a171cb4 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle @@ -16132,7 +16141,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ac022ab ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x5ac3abc5 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x5ade417e handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ae16c2f sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x5aebdc00 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b54078f regmap_field_bulk_free @@ -16224,6 +16232,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5f2ed485 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f37fe65 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x5f3e4cd3 __tracepoint_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x5f582e85 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x5f5f619b efivars_kobject @@ -16270,6 +16279,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf EXPORT_SYMBOL_GPL vmlinux 0x60fecc79 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x60fed082 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x61083ec8 sock_map_destroy 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 @@ -16281,7 +16291,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x617d9a34 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x618a7014 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x6193aca2 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource @@ -16295,7 +16304,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x61c2908e dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x61dd61a1 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f8118d clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x61fd643a dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 EXPORT_SYMBOL_GPL vmlinux 0x6208cd7b xdp_rxq_info_unused @@ -16389,7 +16397,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x65a769ad serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x65bd40b9 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x65c48b37 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x65bef809 usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0x65c7d676 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x65cb24a9 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0x65cb5d3e relay_buf_full @@ -16415,7 +16423,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x66758501 isa_register_driver EXPORT_SYMBOL_GPL vmlinux 0x66766aa5 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0x667934fc regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x66831255 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x668bdbf8 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x66af1cfb crypto_register_ahashes @@ -16440,6 +16447,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x679480da sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x679e3a53 nvme_stop_keep_alive EXPORT_SYMBOL_GPL vmlinux 0x67af68db usb_hcd_pci_probe @@ -16519,7 +16527,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ad30b81 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL vmlinux 0x6afc8e29 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read EXPORT_SYMBOL_GPL vmlinux 0x6b20bfdc pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get @@ -16606,6 +16613,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ddce0c9 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x6dee306b irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0x6dfd6919 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6dfef956 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0x6e05aea6 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x6e07f812 task_active_pid_ns @@ -16706,7 +16714,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x717e0ec3 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x7184d98c fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x7187ff9c xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0x718809ea ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister @@ -16738,7 +16745,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x72e9bb9f raw_abort EXPORT_SYMBOL_GPL vmlinux 0x72f11717 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x72fcc87f xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x73046ed7 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x73108110 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x731aa6cc nf_queue @@ -16807,6 +16813,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x757f6c78 __nvme_check_ready EXPORT_SYMBOL_GPL vmlinux 0x7582ec2a clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x758658f0 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x7587fae0 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x75903633 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x759636dd netlink_remove_tap @@ -16844,14 +16851,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x76ddcced kobject_move EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x77124fbc nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x7717e62b udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x773a429f ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x7765cdd5 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x776aee13 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x7774726c usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x777de4a8 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x777f8546 rdev_set_badblocks @@ -16873,6 +16878,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table EXPORT_SYMBOL_GPL vmlinux 0x780989d1 nvme_auth_dhgroup_id EXPORT_SYMBOL_GPL vmlinux 0x781c42b2 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x781fa453 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x78226d20 fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x7827b883 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt @@ -16966,7 +16972,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad17a77 x86_vector_domain EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7af072da clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x7afa8a70 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7b0ac9d8 ata_sas_port_start @@ -17090,6 +17095,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7f1f2654 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x7f36c115 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x7f409063 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7f55b76f tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x7f66ab99 usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x7f761c4c __inode_attach_wb @@ -17153,6 +17159,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x81de4650 register_ftrace_direct_multi EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81e9737f icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x81ecdff7 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x8200cfb2 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget @@ -17252,6 +17259,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x85e7f079 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial EXPORT_SYMBOL_GPL vmlinux 0x85f05fcc gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x85f996ff sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write EXPORT_SYMBOL_GPL vmlinux 0x86171392 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal @@ -17279,6 +17287,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86be5a3a fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86ca12ef mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x86e65b92 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue @@ -17309,6 +17318,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x87fe7f10 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x8812bc14 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x8816d121 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8829e081 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x882a7e1b of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x883520a4 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0x88384777 device_create_managed_software_node @@ -17369,6 +17379,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a6aaaa4 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x8a6be9d5 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x8a79f93e mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control EXPORT_SYMBOL_GPL vmlinux 0x8a835ce8 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put @@ -17398,7 +17409,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8b65c02a component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0x8b678c27 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x8b89ec04 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp @@ -17442,7 +17452,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8ca81c47 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x8cc37df7 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x8cc6c0a1 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x8cc79fca xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x8ced87ae dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x8d05833d __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x8d1b0606 pci_find_host_bridge @@ -17457,6 +17466,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d76deb6 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d99bf1a xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0x8d9aa29f rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x8da11572 srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x8da4425d icc_nodes_remove @@ -17494,7 +17504,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints EXPORT_SYMBOL_GPL vmlinux 0x8f3eb44f gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8f553265 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f72c7b8 fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x8f7476d2 transport_setup_device @@ -17620,7 +17629,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9432cef6 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x94435f0f xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash @@ -17643,10 +17651,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x951218fd devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951b561a sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x952cf040 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x9533372a clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954ae879 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x95591e33 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x955c3eca tty_get_pgrp @@ -17799,10 +17807,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9af8d1b6 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x9afa4454 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x9b0da665 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x9b1ff35a tick_nohz_dep_clear_task EXPORT_SYMBOL_GPL vmlinux 0x9b200f09 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x9b3e4511 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9b4a0a66 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x9b536ede udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x9b5425e8 spi_async EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b5eef61 skb_scrub_packet @@ -17822,6 +17831,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui EXPORT_SYMBOL_GPL vmlinux 0x9c08a6c8 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x9c295b32 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x9c2b8cbe dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x9c2c9dc7 d_same_name EXPORT_SYMBOL_GPL vmlinux 0x9c36edca pci_stop_and_remove_bus_device_locked @@ -17832,6 +17842,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9c8d4f5d mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location +EXPORT_SYMBOL_GPL vmlinux 0x9ca73bd7 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x9ca9fcfa skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x9cb6d782 wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier @@ -17908,7 +17919,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x9fe2c1d9 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa000ba07 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xa00c102d acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0xa0172838 acpi_dev_ready_for_enumeration EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc @@ -17923,7 +17933,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa084cf6d fscrypt_context_for_new_inode EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0xa0b99f50 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xa0bbab7a clk_register EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages @@ -17931,7 +17940,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa0dcf4ad pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f1e700 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xa0ff426d dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0xa10ad77c clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xa10d5afc devm_regulator_get_exclusive @@ -17963,7 +17971,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa21b0993 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val EXPORT_SYMBOL_GPL vmlinux 0xa2241e90 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xa243f04f sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xa244c2e3 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xa245bd78 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0xa248430b devm_gpio_request @@ -17985,7 +17992,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2d3b2d2 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xa2d3deb2 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xa2dacc5d auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xa2dc3858 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xa2de3e90 usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0xa2deff03 __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers @@ -18063,11 +18069,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xa60c21a7 usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0xa6155f8d acpi_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xa616c3a6 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xa63b765e register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xa63bedf3 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xa63e77eb bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xa6462af3 amd_iommu_is_attach_deferred EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa65a6c7d register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xa65b883d pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xa65ee6cf devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0xa67a30ba class_compat_remove_link @@ -18175,7 +18181,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xaabde17d fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xaaea7a29 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xaaef7428 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0xaaef8533 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0xab027da1 ping_rcv @@ -18207,9 +18212,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xac2d733f md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xac2f100a regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xac30b40a bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xac3a7d7a sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xac3e1503 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xac71a2d7 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xac79ba63 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0xac845afd scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xac931190 of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xacb3b526 regulator_suspend_disable @@ -18304,7 +18309,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xafb577ac init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0xafb67e7a bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xafc9c207 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xafd183ea unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xafd83c4e nvme_unquiesce_io_queues EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string EXPORT_SYMBOL_GPL vmlinux 0xafeb64b4 udp4_hwcsum @@ -18329,10 +18333,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xb09b966b dm_hold EXPORT_SYMBOL_GPL vmlinux 0xb0a143d9 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0xb0b13b0c wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xb0b3baf2 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xb0b63136 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d2cd88 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xb0d4cf59 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xb0deb933 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xb0f9379a pci_device_group @@ -18396,17 +18400,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xb32bdcf7 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0xb34c404d tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xb351d48a usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xb355671b hv_ivm_msr_write EXPORT_SYMBOL_GPL vmlinux 0xb35f0f62 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xb3647712 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0xb371d910 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xb377256c fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xb39ca725 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xb3a52af8 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xb3d027b9 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xb3e2aab0 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0xb3ed6e8a thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xb3f2f148 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb4229006 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xb42af78b nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0xb42b6c92 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0xb42e1f07 tty_ldisc_deref @@ -18505,7 +18510,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb82c3b0e clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0xb838786d devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0xb83cfd4a device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout @@ -18647,7 +18651,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory EXPORT_SYMBOL_GPL vmlinux 0xbd7cd53a xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xbd858515 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xbd8a0042 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xbd8b4444 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xbd91d467 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle @@ -18675,6 +18678,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature EXPORT_SYMBOL_GPL vmlinux 0xbe750801 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xbe7b8564 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xbe91ce3c nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbe9de494 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit @@ -18703,6 +18707,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xbf9bbf25 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xbfa437ec devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xbfb4b7dd sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xbfb4ec2f tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp @@ -18747,6 +18752,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc18f22ed vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xc197418a screen_pos EXPORT_SYMBOL_GPL vmlinux 0xc1991459 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xc1b0cf97 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xc1bfe9b4 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xc1cce634 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first @@ -18761,7 +18767,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc260f7d6 iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc26a9cac iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xc26e1c04 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xc272e0d0 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0xc281d040 vmbus_sendpacket_mpb_desc EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler @@ -18783,6 +18788,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc3351091 ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc341c945 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc342198f bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xc3483d28 nvme_start_ctrl EXPORT_SYMBOL_GPL vmlinux 0xc35f6c9d usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0xc36f902b bpf_prog_put @@ -18869,6 +18875,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc6488de7 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0xc64aaa20 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xc64b0165 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc64b43bd sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0xc6596a12 pci_epc_mem_free_addr @@ -18957,12 +18964,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc94036bd __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95bb217 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc982e5ff dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0xc985a6af devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc986b5d0 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xc98855fb __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xc98dc937 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0xc996406c ip6_route_output_flags @@ -18973,7 +18978,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9bb9ff2 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9d9d828 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xc9dd8a91 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xc9e25974 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu @@ -19070,13 +19074,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xcd85d945 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9563af sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu EXPORT_SYMBOL_GPL vmlinux 0xcda2d561 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xcdac32d8 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xcdb5e972 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbf995f sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdd9edbb inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency @@ -19170,6 +19174,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd16c3089 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0xd18a9ad7 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xd1916743 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xd1a1e78a sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xd1a5c092 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xd1ac9474 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0xd1c2123b regmap_raw_write @@ -19187,6 +19192,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd23f1570 hv_tdx_hypercall_fast EXPORT_SYMBOL_GPL vmlinux 0xd24bb17d elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write @@ -19296,6 +19302,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd6580455 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xd6662aca phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xd67353f0 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget EXPORT_SYMBOL_GPL vmlinux 0xd6851e83 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xd69f5b3c vp_legacy_get_queue_enable @@ -19412,6 +19419,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page EXPORT_SYMBOL_GPL vmlinux 0xdb35554f fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xdb4a16af mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xdb4c5795 dev_pm_opp_sync_regulators EXPORT_SYMBOL_GPL vmlinux 0xdb4e7cc0 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xdb50a59e pci_epc_set_msix @@ -19426,7 +19434,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdb9d150d trace_array_put EXPORT_SYMBOL_GPL vmlinux 0xdb9f00d7 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdba23118 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xdbaa7b73 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0xdbceffd2 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbdae6f3 dev_pm_qos_hide_latency_limit @@ -19456,6 +19463,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdca68054 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0xdcbc7cc8 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xdcbeab17 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xdcd17cee mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xdce53206 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0xdce7aa41 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err @@ -19463,7 +19471,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdcfc7f0a sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd1541bb acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xdd208834 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xdd2554df posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xdd26c1d3 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0xdd2c6326 skb_segment @@ -19483,6 +19490,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdddc98d1 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xdde7e8cb blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0xddf857cb crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xde08e565 unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0xde0d8123 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0xde1a5873 ip_tunnel_change_mtu @@ -19652,7 +19660,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4ca1761 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0xe4cb24a6 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0xe4d4bea1 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xe4d9faac register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xe4e37b3c __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state EXPORT_SYMBOL_GPL vmlinux 0xe4e8e875 device_property_match_string @@ -19717,7 +19724,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe7576269 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xe7630a99 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe770b699 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xe77b806c fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit @@ -19778,6 +19784,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xea17ac8f acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0xea18cf69 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0xea2257b2 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xea2a1d6c sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xea30ebb6 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free @@ -19811,10 +19818,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xeb468d8c sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xeb649434 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0xeb68f7e4 device_move -EXPORT_SYMBOL_GPL vmlinux 0xeb80713c sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0xeb85c3a4 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xeb8d36e6 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xeb8dd419 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xeb9b4657 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xebb0f8c2 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xebb26eed __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms @@ -19863,12 +19870,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xed67999e __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0xed8555f4 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue -EXPORT_SYMBOL_GPL vmlinux 0xed8cefd8 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xed8f50de inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr EXPORT_SYMBOL_GPL vmlinux 0xed98609e __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xeda85ceb __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xedae5165 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xedc187a3 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0xedc316e5 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier @@ -19879,7 +19884,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xee10a56d __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 EXPORT_SYMBOL_GPL vmlinux 0xee186559 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0xee239068 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xee2c286d devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xee2c6e1a ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0xee2edb78 ata_bmdma_qc_prep @@ -19912,6 +19916,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xeef42280 ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xef0b3052 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xef10e299 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request @@ -19954,7 +19959,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf095788d pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0xf095f90d buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0xf09990c2 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xf0a1a923 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0xf0b6a699 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xf0ccf2d4 nvme_auth_dhgroup_kpp EXPORT_SYMBOL_GPL vmlinux 0xf0e36d53 strp_process @@ -19964,6 +19968,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf11025a5 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xf126884d cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0xf1351c26 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf13ec3d4 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xf140430e inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get @@ -20072,6 +20077,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf501cb89 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xf50cd1f2 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xf5117275 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xf52073dc xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xf523fc45 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xf524ad25 mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0xf53a164d __platform_register_drivers @@ -20090,7 +20096,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5ad55b3 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf5b52d5c hv_vp_assist_page EXPORT_SYMBOL_GPL vmlinux 0xf5bbb630 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xf5bdd3bb sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xf5bfe3ee usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xf5c16be2 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0xf5df795a dma_map_sgtable @@ -20202,6 +20207,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0xfa2af296 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xfa2d6714 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xfa30b1ee register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule @@ -20289,7 +20295,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xfd68d88d component_del EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd7daf11 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xfd8c088e vmbus_set_sc_create_callback EXPORT_SYMBOL_GPL vmlinux 0xfd941da5 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0xfda3f97f __SCK__tp_func_br_fdb_update @@ -20298,6 +20303,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfda960c6 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0xfdbd43e5 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc9eb17 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xfdda419b __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0xfde6740e debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xfde91b8c fork_usermode_driver @@ -20329,6 +20335,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfee63ff0 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read EXPORT_SYMBOL_GPL vmlinux 0xfef70da0 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xff009034 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt EXPORT_SYMBOL_GPL vmlinux 0xff0b46b0 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xff13b51f transport_configure_device @@ -20374,9 +20381,9 @@ I915_GVT EXPORT_SYMBOL_GPL 0x0f269268 i915_gem_object_alloc drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x12bbf783 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x307d2f00 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x45f3f12f i915_request_create drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x507a1673 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x5099ea76 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x57bff67f shmem_pin_map drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x6264da41 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x688d2b3e shmem_unpin_map drivers/gpu/drm/i915/i915 diff -u linux-azure-6.2-6.2.0/debian.azure/abi/arm64/azure linux-azure-6.2-6.2.0/debian.azure/abi/arm64/azure --- linux-azure-6.2-6.2.0/debian.azure/abi/arm64/azure +++ linux-azure-6.2-6.2.0/debian.azure/abi/arm64/azure @@ -31,70 +31,70 @@ CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcd9c9ad9 crypto_cipher_setkey vmlinux CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux CXL EXPORT_SYMBOL_GPL 0x0d512f08 to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0db9cfac cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0e24da83 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x0f7328f5 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1496c4e5 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x17d43e16 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x18f4e4d5 cxl_root_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x198a0c8a devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x19e899a2 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1a1fb3a5 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1ab09d6c cxl_hdm_decode_init drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1ae09bc9 cxl_map_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1df3f63a devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x26782156 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x26cb3a5b to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29ceae87 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2d2643bd cxl_mem_create_range_info drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2fccf86f is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x396c7a3e cxl_internal_send_cmd drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x3a90539d cxl_rcrb_to_component drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3b9beccb devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3de3ced5 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3bc7ae0a to_cxl_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x425c99ab devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x42b5a7d9 to_cxl_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x455752b6 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x50395077 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x5081ce55 cxl_port_to_pci_bus drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x527917a6 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x59f677c2 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59e9d110 cxl_decoder_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x5b98f63f is_cxl_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x61dbced3 read_cdat_data drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71dd5954 cxl_dev_state_create drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x730cbeed cxl_driver_unregister drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x78b95a23 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7a56a551 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x78cbc0c4 cxl_dpa_debug drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux CXL EXPORT_SYMBOL_GPL 0x8707cdaf cxl_find_regblock drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x8901e71c cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8aff78a0 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8bad01f5 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x90974703 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x93ef3cd4 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8f4516d0 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x92804c94 to_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x958a13db cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9666638d cxl_decoder_add_locked drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9bdeabe6 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9a5dc188 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x9fff0cc1 devm_cxl_add_dport drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xa196b76f cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb4268d9a to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6b5702a cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa99a6906 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaaa70d49 cxl_dev_state_identify drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xb7faa611 find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb9e5158f cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbd7bee2f cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc3502ec5 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xc382ffc3 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcbb1b1e1 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc66f15cc cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbec8a3b to_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xcc448717 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd2b34248 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd3e390e4 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcdc838e3 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xd7eb70c3 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd90b0102 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xda65af47 cxl_await_media_ready drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xde15a669 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe33d3cb8 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe1648313 cxl_decoder_add_locked drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xe5cceb28 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe82b61a1 cxl_mem_find_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xed80df89 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xef081e20 cxl_decoder_autoremove drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf13a05e1 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf3486824 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf2240144 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf4b3ca49 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xf63ca68f cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf84327e1 devm_cxl_add_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xfb301192 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfeaeb4d8 cxl_dpa_debug drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0xfffd3791 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfffe3b68 to_cxl_root_decoder drivers/cxl/core/cxl_core DMA_BUF EXPORT_SYMBOL_GPL 0x14eb815e dma_buf_map_attachment_unlocked vmlinux DMA_BUF EXPORT_SYMBOL_GPL 0x2a9170c5 dma_buf_move_notify vmlinux DMA_BUF EXPORT_SYMBOL_GPL 0x3a229db6 dma_buf_dynamic_attach vmlinux @@ -208,7 +208,7 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xcd0d3be4 pi_read_block EXPORT_SYMBOL drivers/block/paride/paride 0xeee35018 pi_schedule_claimed EXPORT_SYMBOL drivers/block/paride/paride 0xf2127715 paride_register -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x0bcf9706 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xaaf65793 btbcm_patchram EXPORT_SYMBOL drivers/bluetooth/btrsi 0xfaf5624e rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xd44173db mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN @@ -634,7 +634,6 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d43d0e drm_panel_of_backlight EXPORT_SYMBOL drivers/gpu/drm/drm 0x4519bfd1 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x453c7def drmm_mutex_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x45565197 drm_gem_prime_fd_to_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d75750 drm_vblank_work_schedule @@ -735,6 +734,7 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f190cdd drm_writeback_queue_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f61262e drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f864acf drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x801fcc2b drm_object_attach_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x80b44aad drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c0a3db drm_driver_legacy_fb_format @@ -813,7 +813,6 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5050156 drm_object_property_set_value EXPORT_SYMBOL drivers/gpu/drm/drm 0xa57b9bc3 __drm_dev_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a1ba2c drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f0eaf9 drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xa878ca07 drm_crtc_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xa913a9e0 drm_mode_parse_command_line_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xa91689f3 drm_property_create_signed_range @@ -936,6 +935,7 @@ EXPORT_SYMBOL drivers/gpu/drm/drm 0xed732235 drm_connector_set_link_status_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xeecb05c0 drm_hdmi_avi_infoframe_from_display_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0xef53ebc0 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc2545a __drmm_mutex_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xf02f52f5 drm_get_edid_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f4712c drm_dev_register @@ -2899,50 +2899,50 @@ EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8cf459dc otx2_mbox_check_rsp_msgs EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa2b140e7 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xab35acd0 otx2_mbox_regions_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb47258a1 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb75f692c otx2_mbox_regions_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xba9d44e9 otx2_mbox_alloc_msg_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc1be84fd otx2_mbox_msg_send EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc62c9978 __traceiter_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd5f071e4 __traceiter_otx2_msg_alloc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xdb0fcea5 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x13b0e320 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1c413cbf otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0a562b18 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0d815276 mbox_handler_msix_offset EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1cba6919 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1fdb1131 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x27a9a5ff cn10k_lmtst_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2e601d1a otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x328c771d otx2_smq_flush EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x345e318d otx2_open EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3ecba6ab otx2_get_mac_from_af EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x46b89bbf otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4bc8e461 otx2_mcam_flow_del EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4f1c0d94 otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x50d13ca8 otx2_init_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5b4279b5 otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5d3f9a0d otx2_mbox_up_handler_mcs_intr_notify -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x694c3aca mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x52c1d0bb otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x60e63bac otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x61abecba otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x64e854d0 otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x712f09a0 otx2_mbox_up_handler_cgx_link_event EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x721793a6 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7b1bab68 otx2_shutdown_tc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7e910d56 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x85953847 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x813f91c3 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x828b8677 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x83088f76 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84e15aec otx2_get_maxflows EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x87f40af8 otx2_ioctl -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8df7adcb otx2_nix_config_bp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x92f985c8 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x96a0c3b1 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x94d35074 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9c3bb0f1 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9d94db30 otx2_txschq_config EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa6bcc192 otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc3d598a7 otx2_config_pause_frm -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc6772ce9 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb7eb0bd1 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcfd756ad otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd175654f mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd3ae7ca5 otx2_get_max_mtu EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd6139bc4 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdb08035e mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe3fec2d8 otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe6b95f0a otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe84a0b11 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xea3dcf93 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdbd7eb72 otx2_detach_resources EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xedcb1236 otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfd016140 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf187f58f otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfae4e49d otx2_shutdown_tc EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x963a8131 prestera_device_unregister EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xc599882a prestera_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08ca71f1 mlx4_SET_PORT_user_mac @@ -2991,19 +2991,16 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8668722 mlx4_put_slave_node_guid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffa3a97e mlx4_gen_slaves_port_mgt_ev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d96905 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03d03f5b mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0431e369 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0689b27a mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x054ece77 mlx5_lag_get_roce_netdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0873264e mlx5_core_query_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09668fd3 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d247e03 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fcbb0c2 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10327999 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f549ac mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12555f95 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12c1269f mlx5_lag_query_cong_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1385d60e mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18c8c1ba mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x193ed0ef mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a40bec6 mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a67d616 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a88ee4f mlx5_core_destroy_rq @@ -3016,141 +3013,144 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x258e4ef5 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26b53cd8 mlx5_comp_irq_get_affinity_mask EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27f52363 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ba9ef83 mlx5_eswitch_vport_rep EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd4920a mlx5_fc_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d366b95 mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dab817a mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f825d55 mlx5_eswitch_get_vport_metadata_for_match EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f8e5539 mlx5_cmd_cleanup_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302cdef5 mlx5_core_dealloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3066e09e mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x307635b8 mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30fd015f mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31c800ab mlx5_packet_reformat_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33c7f902 mlx5_lag_is_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3877747a __traceiter_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3886c1a4 mlx5_put_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3902d14e mlx5_qp_debugfs_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a6b621e mlx5_mpfs_del_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a6fcc67 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aeeeba4 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c2fd9f6 mlx5_eswitch_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c9e5802 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d7542e9 mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4f002b mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f5aaf8 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad51311 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d52d1dc mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x416eb3e6 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47da8c58 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a03346e mlx5_cmd_create_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e927206 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5493c5ca mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50b11069 mlx5_eswitch_unregister_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55c68cc2 mlx5_fpga_mem_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56c339ac mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58604ab4 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b071e2c mlx5_fpga_sbu_conn_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5efaf934 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60c95abf mlx5_eswitch_vport_match_metadata_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x612c47c3 mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6322c4a8 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619d1291 mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63236df7 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64163cd2 mlx5_eq_destroy_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x653428cc mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65c94a75 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661a715c mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661b9875 mlx5_core_destroy_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67d62a11 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a7b7133 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bc67f88 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bedf789 mlx5_eq_create_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bf5574e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cb39f96 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d4133f8 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f16b740 mlx5_lag_is_sriov EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70544f6f mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70ae74d6 mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72b60e1d mlx5_mpfs_add_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76926609 mlx5_get_flow_namespace EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b372f64 mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b7074bd mlx5_debugfs_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cbf545e mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d2c7d6d mlx5_core_detach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ff2a5f9 mlx5_eq_disable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81f6ebdb mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8330377e mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85437736 mlx5_core_create_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x856d5253 mlx5_fs_remove_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88941bd3 mlx5_eq_get_eqe EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a0f98b4 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a97c71a mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d728d33 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8df2839f mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c5b92de mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ed5b0dd mlx5_lag_get_slave_port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8edd5f2f mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eec8c75 mlx5_eswitch_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90c29d2d mlx5_rdma_rn_get_params EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f7592c mlx5_core_modify_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b4cab2 mlx5_core_dealloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x980cd165 mlx5_core_modify_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x980d78ee mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a9c6ca7 mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b2c9f0c mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b62195f mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bf8897b mlx5_core_query_vendor_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d7fe153 mlx5_query_ib_port_oper EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e4eddc3 mlx5_core_alloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ff42f49 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa26c8393 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28c2f7c mlx5_cmd_create_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39c142b mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa567eefa mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa56bad6c mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6ebb305 mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7fcb0b7 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa820a15e mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa84dc778 mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa946e8dd mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9caebd mlx5_sriov_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4aa82c1 mlx5_eswitch_get_vport_metadata_for_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb815f94b mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3dd883 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba83c4f3 mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf593d47 mlx5_debug_qp_add EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfa924d5 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc016da12 mlx5_eswitch_reg_c1_loopback_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1ccce7a mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc691f5c8 mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6fb0aea mlx5_rsc_dump_cmd_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7c3f3b0 mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8780fba mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8ea860c mlx5_eswitch_add_send_to_vport_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc3c5d70 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcecb35d1 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf35fddb mlx5_lag_get_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd20da898 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7cf699b mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7d8069c mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd953be49 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd75c9a3e mlx5_eswitch_add_send_to_vport_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd165f54 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd4fae1c __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9505da mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfd5e32a mlx5_fpga_get_sbu_caps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe03eb198 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1caee09 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe28fa798 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30a0fa9 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3c419c4 mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4551e89 mlx5_debugfs_get_dev_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4cffcce mlx5_rl_remove_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8314b75 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe87af60d mlx5_eq_disable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeca64062 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0222582 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec2d8618 mlx5_vf_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2a1b8b8 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf750f3cb mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf65f6383 mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa9dfc18 mlx5_cmd_do EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe9d8efb mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up @@ -3408,14 +3408,14 @@ EXPORT_SYMBOL drivers/net/ppp/pppox 0xbdca4f1f register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto EXPORT_SYMBOL drivers/net/sungem_phy 0x5eb81849 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x254f178d team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x34f694cd team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7096087f team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x974cdb57 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xbcd295f7 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xce86d52d team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xd0a20cc6 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xd0a483c4 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x31bedfb1 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x379b7bf0 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x4101efb9 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x4fa0dca4 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x54559904 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x836c40d9 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x97fc7bcd team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xe6bd6e72 team_options_register EXPORT_SYMBOL drivers/net/usb/usbnet 0x21bbddfe usbnet_device_suggests_idle EXPORT_SYMBOL drivers/net/usb/usbnet 0x83bd673a usbnet_link_change EXPORT_SYMBOL drivers/net/usb/usbnet 0xec6c9847 usbnet_manage_power @@ -3987,75 +3987,75 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8cfcbe6 efuse_read_1byte EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc0cae14 rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff25c083 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x976c7bf9 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x0aac0c74 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x7c8c014b rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x934e6a75 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01991a9e rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x09d41281 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ba32080 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15b0cc82 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16b1dc70 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x185a921a rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1adf037b rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1af6a808 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c77621c rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x20e9b211 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x232303bb rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x302eb691 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x324ed3fb rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x96bc7038 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x0b7c07b5 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x7d5c0a8a rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x929e61b4 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0221e79f rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x05323e7f rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1277714b rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1495a053 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19b0090f rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c5ced71 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c611a63 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ffc6876 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2157cfa2 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x215adfd6 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x25438830 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2646afdf rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2cfa1499 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x309ff311 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3206ff44 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x339e1adf rtw_phy_pwrtrack_need_iqk EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x375262fb rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37b3a0c0 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a541d8d rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e4fbbf2 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37f0f624 rtw_coex_read_indirect_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x456e1e7c rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x459f2d18 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x467d217f rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b41e911 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51018c50 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x513d81fa __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47749796 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4dae0a22 rtw_phy_read_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x565908db rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51d953c4 rtw_dump_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a57b407 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x672bc09f rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x69ad6bce rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6bdd9135 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e82abf7 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ee4068c rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d8f881e rtw_phy_cfg_mac EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73aa5641 rtw_tx_fill_tx_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74400d4b rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75ed6f02 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76c8d40a rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78f916f2 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d7335ed rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8285f3d5 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b5eb46c rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f5cc317 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9fe09437 rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4db7344 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa573ae83 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7738879 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8d6eec0 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa6a9334 rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb143edbb rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4caf88b rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbdc473c rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcaf8bb1e rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcbd5f850 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd83f9a9 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcea5cb23 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcfcfe41d rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6141285 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd892d931 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcf513e6 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6a5bdea rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe82cedf9 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecc345f7 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf1cf8568 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfcfa1a3a rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79619a92 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85a45969 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x895e69a5 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92554318 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96f777e7 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9874cac5 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9eb7e6cb rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ed7420a rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1f8141c rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa66790d6 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaada21c4 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab71d5ae rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf4c26c3 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb1443230 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9c66cbe rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbce0d4d9 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbd7b406e rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc55d0246 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xce48bb59 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcfb5ce39 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8d470e9 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdbc7027d rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde43d07d rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdec37b8a rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe16d8211 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe614a41d rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9d4a188 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeaa00c8e rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb610d27 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec8e908f rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee3b7b48 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeed4af1a rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf01ec3d0 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf297d560 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf91420e0 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff4b56de rtw_phy_pwrtrack_need_lck EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0917a503 rtw_pci_remove EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x276022a5 rtw_pm_ops EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x4a53f7dc rtw_pci_shutdown @@ -4067,6 +4067,7 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xc65fed19 rtw8852c_chip_info EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x00bcdd56 rtw89_core_rx EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09d72f7c rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0aae2b56 rtw89_mac_size EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0ae083ea rtw89_mac_write_xtal_si EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x144e2add rtw89_mac_resume_sch_tx EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x154a35b2 rtw89_fw_h2c_dctl_sec_cam_v1 @@ -4088,7 +4089,6 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x697734fb rtw89_core_napi_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b2c481b rtw89_phy_write_rf_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e619fce rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x740d13d0 rtw89_mac_cfg_ctrl_path EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7481f2fa rtw89_core_fill_txdesc_fwcmd_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75c22936 rtw89_mac_get_err_status @@ -5637,22 +5637,22 @@ EXPORT_SYMBOL net/mac802154/mac802154 0xd961eada ieee802154_xmit_error EXPORT_SYMBOL net/mac802154/mac802154 0xe0373b0b ieee802154_xmit_hw_error EXPORT_SYMBOL net/mac802154/mac802154 0xe4d49e74 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05d99c32 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1a11c521 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x66f3ce0c ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x718bec55 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c139dcc ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98ece989 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa0966994 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb20851cc ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb938f003 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xce5b99f9 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15479317 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ffd374a ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a98782b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6cf81c89 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93d4187e ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x978844e9 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa09b8efb ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8eb1ee4 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xadbe8d14 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae8cc4df unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb58ce4b9 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc5e0aeb5 ip_vs_scheduler_err EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9660577 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec28418d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfb9b8c03 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc305ee2 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfca6e20b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf158dfc2 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc95d5d0 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfcdba3a9 register_ip_vs_app EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb736f3a7 nf_ct_ext_add @@ -5772,25 +5772,25 @@ EXPORT_SYMBOL net/phonet/phonet 0xb3c79aee pn_sock_hash EXPORT_SYMBOL net/phonet/phonet 0xde0bfd36 pn_sock_get_port EXPORT_SYMBOL net/phonet/phonet 0xebf2b9c6 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x023366bd rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0b72db55 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x19b962e7 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d420919 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4b245fdc rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5b2c69b3 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x44896a9b rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x586d803f rxrpc_kernel_abort_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x64929de6 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a16fbb1 rxrpc_kernel_begin_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x6fa21629 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6fc27f6b rxrpc_kernel_end_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x7e1ef44d rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x90baa499 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9322d983 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9bd0f404 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa65bfb99 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb1fee37d rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcbdd3bab rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe48d3df5 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8bf80fbc rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x96533f6b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa2ec21fe rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaf0cada8 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb16a5819 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc4badc60 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xca2a7ccd rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xddfbdba0 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xecb0cc64 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xef2556d8 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8b81c32 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf95b22f6 rxrpc_kernel_get_srtt EXPORT_SYMBOL net/sctp/sctp 0xe9dca610 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x0c9319ca __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg @@ -5804,17 +5804,17 @@ EXPORT_SYMBOL net/smc/smc 0xf5aec5a4 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xfe6cfc60 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2c8438af gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6d6161de gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfaef8b44 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x507731f1 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb78d5f7d svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc8932fc1 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x26241bd2 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x93e89376 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xd96d7722 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xf66edb19 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x21ffb445 tls_get_record +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x420e2d4f gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9ef22622 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdfc96900 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1e1ddbf3 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6d7c5907 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd5df8732 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x3c64733c tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x5a78e7d4 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xb29203e0 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xf5caf7e4 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x9ddc81f7 tls_get_record EXPORT_SYMBOL net/wireless/cfg80211 0x0206e25e cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x028df2c2 cfg80211_external_auth_request EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create @@ -5986,6 +5986,7 @@ EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b712cb sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01cf269b generic_fadvise EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe @@ -6100,6 +6101,7 @@ EXPORT_SYMBOL vmlinux 0x06848c60 to_nfit_uuid EXPORT_SYMBOL vmlinux 0x068874ba filemap_map_pages EXPORT_SYMBOL vmlinux 0x069d5efb vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x069f65bc xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x06b088e7 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x06bcb18a tcp_getsockopt EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen @@ -6188,6 +6190,7 @@ EXPORT_SYMBOL vmlinux 0x0a4e1cee gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x0a6ded78 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x0a72e27f skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x0a761a3d xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier EXPORT_SYMBOL vmlinux 0x0a80bab5 tcf_exts_validate EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx @@ -6354,6 +6357,7 @@ EXPORT_SYMBOL vmlinux 0x11284932 scsicam_bios_param EXPORT_SYMBOL vmlinux 0x1128f848 skb_vlan_untag EXPORT_SYMBOL vmlinux 0x11340dda pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x1149ca3a xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init EXPORT_SYMBOL vmlinux 0x118ce3a1 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x118e12c0 vlan_filter_push_vids @@ -6497,11 +6501,13 @@ EXPORT_SYMBOL vmlinux 0x18cfde4d udp_lib_get_port EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start EXPORT_SYMBOL vmlinux 0x18ee4b3c xfrm_register_type +EXPORT_SYMBOL vmlinux 0x18f3607b xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x18f94b74 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x19096d81 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x1924050d sg_miter_next EXPORT_SYMBOL vmlinux 0x1925388c dev_mc_del EXPORT_SYMBOL vmlinux 0x19291cc0 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x193c28da xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x19426ce7 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x194770a5 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create @@ -6568,6 +6574,7 @@ EXPORT_SYMBOL vmlinux 0x1c02b220 tcp_make_synack EXPORT_SYMBOL vmlinux 0x1c1b2149 buffer_migrate_folio EXPORT_SYMBOL vmlinux 0x1c1b8549 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x1c247782 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x1c4f049e md_write_end EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s @@ -6591,6 +6598,7 @@ EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location EXPORT_SYMBOL vmlinux 0x1d2348a8 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d253802 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x1d32bd1a blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree @@ -6632,7 +6640,6 @@ EXPORT_SYMBOL vmlinux 0x1ec028f1 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x1ecc6114 kmalloc_trace EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1eec5064 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format EXPORT_SYMBOL vmlinux 0x1f110f12 dump_skip EXPORT_SYMBOL vmlinux 0x1f4b9f58 i2c_add_adapter @@ -6669,7 +6676,6 @@ EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id EXPORT_SYMBOL vmlinux 0x215ce215 dev_uc_add -EXPORT_SYMBOL vmlinux 0x2177f154 xfrm_lookup EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset EXPORT_SYMBOL vmlinux 0x2191c9bb xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x21975a88 tcf_idr_check_alloc @@ -6873,7 +6879,6 @@ EXPORT_SYMBOL vmlinux 0x2c25c85f tcf_block_get EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up EXPORT_SYMBOL vmlinux 0x2c339389 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x2c3c39de xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x2c5f4bfa input_unregister_device EXPORT_SYMBOL vmlinux 0x2c616c4d rproc_set_firmware @@ -6906,7 +6911,6 @@ EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr EXPORT_SYMBOL vmlinux 0x2d9e5267 softnet_data -EXPORT_SYMBOL vmlinux 0x2da28bc8 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x2dacad20 locks_copy_lock EXPORT_SYMBOL vmlinux 0x2dacfc50 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x2db2c384 pcie_print_link_status @@ -6981,7 +6985,6 @@ EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x3128745d unregister_filesystem EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x31426c30 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x317ed433 register_qdisc EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring EXPORT_SYMBOL vmlinux 0x319e65e2 register_tcf_proto_ops @@ -7182,7 +7185,6 @@ EXPORT_SYMBOL vmlinux 0x3ab4c87a scsi_ioctl EXPORT_SYMBOL vmlinux 0x3ab5a19d seq_bprintf EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3acf9025 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region @@ -7365,6 +7367,7 @@ EXPORT_SYMBOL vmlinux 0x420a0c05 param_set_charp EXPORT_SYMBOL vmlinux 0x422faca6 dst_release EXPORT_SYMBOL vmlinux 0x42300c01 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x423e5dfb xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x4248e72b processors EXPORT_SYMBOL vmlinux 0x4249e075 update_devfreq @@ -7401,7 +7404,6 @@ EXPORT_SYMBOL vmlinux 0x43f5b20c blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x441beb40 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x4422f069 keyring_alloc EXPORT_SYMBOL vmlinux 0x4427a9d5 udp_poll EXPORT_SYMBOL vmlinux 0x44283dbf jbd2_fc_wait_bufs @@ -7468,7 +7470,6 @@ EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x4678a233 pskb_expand_head EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4689e8e7 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x468a8028 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x4691f0d9 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x4693bc23 pcim_pin_device @@ -7615,6 +7616,7 @@ EXPORT_SYMBOL vmlinux 0x4c7b60f3 touch_buffer EXPORT_SYMBOL vmlinux 0x4c855f74 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x4ca7c28a ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x4cb1f194 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x4cbd67fa ip6_xmit EXPORT_SYMBOL vmlinux 0x4cc26b9d flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x4cd84535 of_find_node_by_phandle @@ -7625,11 +7627,11 @@ EXPORT_SYMBOL vmlinux 0x4d1078fa flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x4d16b0d6 inetdev_by_index EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d31f948 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d501a3a simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0x4d5477d1 ip_getsockopt EXPORT_SYMBOL vmlinux 0x4d60d23b filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d78f480 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq @@ -7968,6 +7970,7 @@ EXPORT_SYMBOL vmlinux 0x5c15ad24 notify_change EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout EXPORT_SYMBOL vmlinux 0x5c2a81ad pipe_lock +EXPORT_SYMBOL vmlinux 0x5c2d04cd inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c3ea796 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x5c47a1ba write_inode_now @@ -8096,7 +8099,6 @@ EXPORT_SYMBOL vmlinux 0x611cd26f sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x6138aed9 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x61521c6e devm_memremap EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x616a2d04 mmc_retune_pause @@ -8214,6 +8216,7 @@ EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer EXPORT_SYMBOL vmlinux 0x65ef9790 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x65f16bdc gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x65f1dac3 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x65f9a9d0 register_netdevice EXPORT_SYMBOL vmlinux 0x660546ce fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x6626afca down @@ -8341,6 +8344,7 @@ EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x6c1322b8 mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x6c1471ec __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x6c19c398 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c23ef12 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change @@ -8348,6 +8352,7 @@ EXPORT_SYMBOL vmlinux 0x6c53771a fqdir_exit EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb EXPORT_SYMBOL vmlinux 0x6c621ab7 __alloc_skb +EXPORT_SYMBOL vmlinux 0x6c72f073 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x6c922068 dump_page EXPORT_SYMBOL vmlinux 0x6c9502ec iov_iter_gap_alignment @@ -8392,7 +8397,6 @@ EXPORT_SYMBOL vmlinux 0x6e0db1b6 vm_mmap EXPORT_SYMBOL vmlinux 0x6e128e43 mdio_device_free EXPORT_SYMBOL vmlinux 0x6e16a2e8 seq_dentry -EXPORT_SYMBOL vmlinux 0x6e198ad4 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x6e1fe618 __fput_sync EXPORT_SYMBOL vmlinux 0x6e25436f mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x6e2b0ed8 jbd2_wait_inode_data @@ -8531,6 +8535,7 @@ EXPORT_SYMBOL vmlinux 0x73a63256 clk_add_alias EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range EXPORT_SYMBOL vmlinux 0x73b8e6a2 simple_setattr +EXPORT_SYMBOL vmlinux 0x73db9234 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x73e094f0 single_open EXPORT_SYMBOL vmlinux 0x73f174ba sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x7401e32e tcf_qevent_dump @@ -8586,7 +8591,6 @@ EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired EXPORT_SYMBOL vmlinux 0x762af787 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x762d6e10 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x7640d1d8 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x764d6bf0 complete_request_key EXPORT_SYMBOL vmlinux 0x76583a08 tcf_qevent_handle @@ -8789,6 +8793,7 @@ EXPORT_SYMBOL vmlinux 0x7f10ca33 mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x7f226c94 phy_aneg_done EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f4b9b4b xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5db783 input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free @@ -8916,7 +8921,6 @@ EXPORT_SYMBOL vmlinux 0x85482fce dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0x855d6bbe blk_start_plug EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857f1921 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x858862a1 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x858ac661 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x858df3a3 __devm_of_mdiobus_register @@ -8976,6 +8980,7 @@ EXPORT_SYMBOL vmlinux 0x882095b0 mmc_can_discard EXPORT_SYMBOL vmlinux 0x883fcee5 fb_set_cmap EXPORT_SYMBOL vmlinux 0x88498518 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x88618594 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x886d2476 netdev_warn EXPORT_SYMBOL vmlinux 0x887461d8 submit_bh EXPORT_SYMBOL vmlinux 0x88769655 param_get_ushort @@ -9236,6 +9241,7 @@ EXPORT_SYMBOL vmlinux 0x943972e2 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x943fc8ec folio_migrate_flags EXPORT_SYMBOL vmlinux 0x94416019 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x94433c99 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x94464f3f __block_write_full_page EXPORT_SYMBOL vmlinux 0x944691a5 fs_context_for_reconfigure @@ -9277,6 +9283,7 @@ EXPORT_SYMBOL vmlinux 0x95e08d4b pps_lookup_dev EXPORT_SYMBOL vmlinux 0x95e52140 path_put EXPORT_SYMBOL vmlinux 0x95e97271 pci_restore_state +EXPORT_SYMBOL vmlinux 0x95eb8ce8 __aperture_remove_legacy_vga_devices EXPORT_SYMBOL vmlinux 0x95fdf4cf ppp_input_error EXPORT_SYMBOL vmlinux 0x96041700 fb_prepare_logo EXPORT_SYMBOL vmlinux 0x9629f50a __nla_put_64bit @@ -9318,6 +9325,7 @@ EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0x97f3fd7a generic_file_mmap EXPORT_SYMBOL vmlinux 0x97f53432 proc_set_size +EXPORT_SYMBOL vmlinux 0x97f74aa8 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x97fe0c5d tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x98090e76 shmem_aops EXPORT_SYMBOL vmlinux 0x980946ee netdev_master_upper_dev_get @@ -9326,7 +9334,6 @@ EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0x98349315 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x986ed9b3 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x98751214 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x98807218 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x98811d4f netdev_lower_get_next_private @@ -9402,7 +9409,6 @@ EXPORT_SYMBOL vmlinux 0x9b821907 param_set_bint EXPORT_SYMBOL vmlinux 0x9b86138b folio_mapping EXPORT_SYMBOL vmlinux 0x9b9bbf2d devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x9ba08d4a xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x9ba0cfd6 mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0x9bbc2ee7 md_done_sync EXPORT_SYMBOL vmlinux 0x9bcf2626 dev_uc_flush @@ -9676,6 +9682,7 @@ EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8612dc0 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work EXPORT_SYMBOL vmlinux 0xa88efb77 skb_split EXPORT_SYMBOL vmlinux 0xa8937154 param_get_invbool @@ -9706,6 +9713,7 @@ EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9973e3b pps_unregister_source +EXPORT_SYMBOL vmlinux 0xa99a699f __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xa99b32eb sk_capable EXPORT_SYMBOL vmlinux 0xa9bd2c83 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0xa9dbcead pci_enable_msi @@ -9820,7 +9828,6 @@ EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair EXPORT_SYMBOL vmlinux 0xae451226 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0xae507cd0 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xae572265 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xae584b84 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm EXPORT_SYMBOL vmlinux 0xae601322 dcache_readdir @@ -9856,6 +9863,7 @@ EXPORT_SYMBOL vmlinux 0xb033a2b2 __remove_inode_hash EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xb0548e9f skb_eth_push +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb059e6bb scsi_device_put EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state @@ -10020,7 +10028,6 @@ EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit EXPORT_SYMBOL vmlinux 0xb6d03373 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xb6d1a885 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xb6db1b4d __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb70ca2e6 generic_setlease @@ -10124,7 +10131,6 @@ EXPORT_SYMBOL vmlinux 0xbb713e6d cont_write_begin EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock EXPORT_SYMBOL vmlinux 0xbbb54a75 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xbbe05cd4 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xbbe10657 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xbbf3276e bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit @@ -10368,7 +10374,6 @@ EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6e1dd00 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc6ee36ce phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key @@ -10381,7 +10386,6 @@ EXPORT_SYMBOL vmlinux 0xc725987c configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0xc729f8df __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xc737faae __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xc7540bbb xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xc7589725 touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0xc768a011 netdev_notify_peers EXPORT_SYMBOL vmlinux 0xc76a07bd pagecache_isize_extended @@ -10395,6 +10399,7 @@ EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7cd7e4a flow_rule_match_basic EXPORT_SYMBOL vmlinux 0xc7deb2f1 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xc7fd3e5f inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xc802032b free_cgroup_ns EXPORT_SYMBOL vmlinux 0xc808a958 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xc80975c6 key_instantiate_and_link @@ -10493,7 +10498,6 @@ EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc26add3 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc363341 scsi_print_sense_hdr @@ -10508,7 +10512,6 @@ EXPORT_SYMBOL vmlinux 0xcc72f826 mmc_request_done EXPORT_SYMBOL vmlinux 0xcca0f462 netlink_set_err EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccabf7a8 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0xccaf9eab put_ipc_ns EXPORT_SYMBOL vmlinux 0xcccadbc5 devm_memunmap EXPORT_SYMBOL vmlinux 0xccd1add1 dquot_load_quota_sb @@ -10666,7 +10669,6 @@ EXPORT_SYMBOL vmlinux 0xd4d0622a scsi_rescan_device EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table EXPORT_SYMBOL vmlinux 0xd4f17ded input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xd4f58579 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xd50ccbaa inet_shutdown EXPORT_SYMBOL vmlinux 0xd511cc4e netif_schedule_queue EXPORT_SYMBOL vmlinux 0xd51c2284 sunxi_sram_claim @@ -10726,7 +10728,6 @@ EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers EXPORT_SYMBOL vmlinux 0xd73fb37d blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0xd74317ea __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc EXPORT_SYMBOL vmlinux 0xd7502b69 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xd758fad7 bh_uptodate_or_lock @@ -10752,7 +10753,6 @@ EXPORT_SYMBOL vmlinux 0xd82e0fc2 dquot_scan_active EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed EXPORT_SYMBOL vmlinux 0xd8459c3a dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xd8464662 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xd85224a9 netdev_notice EXPORT_SYMBOL vmlinux 0xd8640127 rtnl_create_link EXPORT_SYMBOL vmlinux 0xd8677151 pm_vt_switch_unregister @@ -10796,6 +10796,7 @@ EXPORT_SYMBOL vmlinux 0xda21d2be flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0xda2ddff8 component_match_add_release EXPORT_SYMBOL vmlinux 0xda2fbd98 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xda3423fd xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xda37baf6 of_device_unregister EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda406664 may_setattr @@ -10870,6 +10871,7 @@ EXPORT_SYMBOL vmlinux 0xdd8c53c6 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0xdd8fe10f sock_efree EXPORT_SYMBOL vmlinux 0xdd908aea phy_connect +EXPORT_SYMBOL vmlinux 0xdd9922fa xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xdda7592a page_get_link EXPORT_SYMBOL vmlinux 0xddabcb15 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level @@ -10880,13 +10882,13 @@ EXPORT_SYMBOL vmlinux 0xddf25589 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde0084af xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xde009fea unregister_binfmt EXPORT_SYMBOL vmlinux 0xde01797e alloc_file_pseudo EXPORT_SYMBOL vmlinux 0xde0f0677 tty_port_close_start EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xde386c31 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xde3f91c1 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde503866 fman_reset_mac EXPORT_SYMBOL vmlinux 0xde67419e sg_split EXPORT_SYMBOL vmlinux 0xde684ddb tcp_seq_stop @@ -10911,10 +10913,10 @@ EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2fd84b udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf3d965e xfrm_lookup EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf53cbed __udp_disconnect EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6987df xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xdf6ec071 stop_tty EXPORT_SYMBOL vmlinux 0xdf7a69ee vfs_path_lookup @@ -10926,7 +10928,6 @@ EXPORT_SYMBOL vmlinux 0xdfac4f3a rt6_lookup EXPORT_SYMBOL vmlinux 0xdfb2ec80 of_device_is_compatible EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream -EXPORT_SYMBOL vmlinux 0xdfc4cbc7 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xdfcb2d26 fget_raw EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfd40b97 pcie_set_mps @@ -11105,6 +11106,7 @@ EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range EXPORT_SYMBOL vmlinux 0xe726da2a neigh_changeaddr EXPORT_SYMBOL vmlinux 0xe72bb314 folio_write_one +EXPORT_SYMBOL vmlinux 0xe72e074c __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xe73916b0 dcb_getapp EXPORT_SYMBOL vmlinux 0xe73c3cf1 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xe74008f1 locks_copy_conflock @@ -11200,6 +11202,7 @@ EXPORT_SYMBOL vmlinux 0xeba0fc62 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xeba9d091 phy_print_status EXPORT_SYMBOL vmlinux 0xebbb4a53 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xebc0da71 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0xebcbe1e0 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xebd75489 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point @@ -11255,6 +11258,7 @@ EXPORT_SYMBOL vmlinux 0xedf91c57 dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xedfa5891 configfs_depend_item EXPORT_SYMBOL vmlinux 0xedfb78a8 locks_free_lock +EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xee1edc85 rproc_shutdown EXPORT_SYMBOL vmlinux 0xee1f6b2c init_task EXPORT_SYMBOL vmlinux 0xee1fd21c pcie_get_mps @@ -11275,6 +11279,7 @@ EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9febb4 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeebc832c i2c_verify_client EXPORT_SYMBOL vmlinux 0xeec7ba54 tcf_action_update_hw_stats @@ -11482,7 +11487,6 @@ EXPORT_SYMBOL vmlinux 0xf883e397 max8998_write_reg EXPORT_SYMBOL vmlinux 0xf88ceab9 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0xf899c5c0 stream_open -EXPORT_SYMBOL vmlinux 0xf8a0f1f2 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xf8b71186 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xf8ccf2fc fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 @@ -11538,7 +11542,6 @@ EXPORT_SYMBOL vmlinux 0xfb03b17d no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xfb04ca9d phy_start EXPORT_SYMBOL vmlinux 0xfb11a09b d_set_fallthru -EXPORT_SYMBOL vmlinux 0xfb12976d sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending @@ -11567,7 +11570,6 @@ EXPORT_SYMBOL vmlinux 0xfc4bfedb nf_ip_checksum EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown EXPORT_SYMBOL vmlinux 0xfc5a784f mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xfc7e27ce mount_single EXPORT_SYMBOL vmlinux 0xfc845830 config_item_set_name EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset @@ -11834,14 +11836,14 @@ EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0b9ec9a bcma_pmu_get_bus_clock EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf36ef3d5 bcma_core_is_enabled EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff53d18d bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x47b7f70b btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7410fc4a btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x970feb65 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x987bb33f btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xabd4691d btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb7ee6686 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe34e5b48 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf51ff143 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x118e7b4f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2e11248c btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x54159ea3 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e28edaf btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8cdc4623 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9f151afb btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc7357128 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xca02c262 btbcm_write_pcm_int_params EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1747ff9f btintel_set_event_mask_mfg EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x277012ea btintel_send_intel_reset EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x353d194e btintel_exit_mfg @@ -12336,11 +12338,11 @@ EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xc247b30e fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x382ecb22 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x49d942a7 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x56081cf3 ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x5e015bd3 ffa_driver_register EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x6afd255f ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xa73f9cbb ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xab5765d4 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xdd282a09 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xf04f45b0 ffa_driver_unregister EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x70102eec get_scpi_ops EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0xc2420f8a mtk_adsp_ipc_send EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done @@ -14546,15 +14548,15 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcf33d4bd fun_get_res_count EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x71487505 i40e_client_device_unregister EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa32b7f67 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1ae1fd2b ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x25a311f3 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7a30eb83 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdb1bbfd3 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe5341243 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x05c1f093 otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x6a77f7cc otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x93f7c867 otx2_ptp_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd9fba083 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x20d338c3 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5e5abaf8 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb702e4e1 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd511769e ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdcec0ecc ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x2b4eef30 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x6ab3156f otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x9f87ca9c otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd0f51552 otx2_ptp_clock_index EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x008c0883 __mlx4_register_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x021ac405 mlx4_set_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03d6fc61 mlx4_get_counter_stats @@ -14691,7 +14693,6 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3613be53 mlx5_query_nic_vport_promisc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38af2f63 mlx5_nic_vport_enable_roce EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d9e5e4f mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x415527c8 mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d37b29 mlx5_modify_nic_vport_mac_address EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x469a638c mlx5_query_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4966a4b3 mlx5_core_modify_hca_vport_context @@ -14725,12 +14726,12 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb696ab77 mlx5_query_module_eeprom_by_page EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8bcca4b mlx5_db_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb05c908 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc052a76a mlx5_eswitch_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0646bf5 mlx5_core_reserved_gids_count EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86cc1a8 mlx5_query_port_wol EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9526a73 mlx5_query_min_inline EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca8f5c2f mlx5_frag_buf_alloc_node EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccba1dd4 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdd102e5 mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd12660a0 mlx5_query_nic_vport_qkey_viol_cntr EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4a2338d mlx5_set_port_caps EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d7c6f6 mlx5_query_nic_vport_mtu @@ -14744,6 +14745,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf947b603 mlx5_query_module_eeprom EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9cdf7f0 mlx5_frag_buf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe4bc500 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea6985c mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfff0a2c3 mlx5_query_port_tc_bw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7b0ea11d ks8851_probe_common EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa1712b56 ks8851_suspend @@ -15803,9 +15805,9 @@ EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8da60c0c devm_reboot_mode_register EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe9da1490 reboot_mode_unregister EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf53f1f57 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x43f84701 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xc5804734 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xdd381f1c bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x382defec bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8aaee3f7 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa95b255e bq27xxx_battery_teardown EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x28f73966 pcf50633_mbc_get_usb_online_status EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x42ed47dd pcf50633_mbc_get_status EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xdf9856b9 pcf50633_mbc_usb_curlim_set @@ -17019,21 +17021,19 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0bd6eed1 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1eb311c1 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x803cb8ac nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9c1bb8f4 nlmsvc_ops EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb0ea6d74 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb371630d lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb92e3dad nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbc90a8e0 lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd121939a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfd42ca54 lockd_up EXPORT_SYMBOL_GPL fs/nfs/nfs 0x005595ed nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x026ee398 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads EXPORT_SYMBOL_GPL fs/nfs/nfs 0x032e160f nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05b2ef04 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08233b98 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b01354c nfs_init_server_rpcclient EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b6e34ba nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bde8f4b nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match @@ -17043,23 +17043,25 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7d62ca nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e1cce66 nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x203a9d04 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2276a6b0 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x224ea5c7 nfs_probe_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23572321 nfs_clear_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23c71ab2 nfs_force_lookup_revalidate EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2505fb5a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x258777d1 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2793cb13 nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x279a21cf nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x297da308 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c0a0975 nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c7a6441 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d5a5120 nfs_sb_active EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32aab5d7 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33edd774 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x344ce438 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3893d988 nfs_flock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b3d8d3b nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb092fa nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f79ece7 nfs_initiate_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable @@ -17078,29 +17080,31 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x590f0e6c __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5aac1f56 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b0625dd nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2e4f1d nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6126c19c nfs_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x612fa8b2 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61a9b3f1 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6233bd4f register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x642b8b45 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66261d76 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x664e2d3f nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67352e23 nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68749758 nfs_show_stats EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68be1781 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68fb0641 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a990b41 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6af0e64d nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bf08b75 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ceacf77 nfs_async_iocounter_wait EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7044fcb9 nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70e63281 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0x711b7b97 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7336c669 nfs_init_server_rpcclient EXPORT_SYMBOL_GPL fs/nfs/nfs 0x738aeb79 nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73c44059 nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7463a093 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b40a26 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d7ff24e nfs_pageio_init_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e5a9745 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e5cb042 nfs_generic_pgio @@ -17111,7 +17115,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88f3bf56 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89655dc7 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3c2b68 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cdb61b9 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90171526 nfs_clear_verifier_delegated EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue @@ -17120,7 +17123,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94dd7bec nfs_commitdata_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x952fdd0f nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x961dac8d nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97b9aa48 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b1c8225 nfs_link @@ -17128,9 +17130,10 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d1392ce nfs_pageio_reset_read_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d3fb669 nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e31a22a nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e9b316d nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f29d2a1 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa20d8a1a nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa37375d7 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa52b9579 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e48b59 nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8f23c8d nfs_do_submount @@ -17146,9 +17149,9 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d77052 nfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb78f26d4 nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c72fcf nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb96ce5bd unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba5a6d78 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcdf4df7 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf264d09 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc218d506 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2540c3a nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask @@ -17157,38 +17160,37 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce597953 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6e09b7 nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3b6dba7 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd45fd791 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd65909d9 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd673d30b nfs_file_mmap EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd67ee048 nfs_get_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7a65bc0 nfs_post_op_update_inode_force_wcc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7e39e98 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7fe5fe7 nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda003b8b nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda4aca5e nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb091d29 get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0dce957 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe14f1de6 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe23db8ae nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe254ec83 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3bd4255 nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4a2b12c nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5dfb0e6 nfs_file_llseek EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7611ba3 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7b59cef nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7c8e5aa nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe829957b register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7ee4b20 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea5da59f nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeb7d76b nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeb9f513 nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf28b0af0 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf32873f4 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75c52f0 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6734402 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8777757 nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf877cb93 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9cf26f6 nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb873bf7 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd73564b nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdfc950d nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe5f7d16 nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe79d933 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff8c89ea nfs_mkdir @@ -17237,7 +17239,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e3ba285 pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62897a92 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6454c089 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66c025c9 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68f0c20a nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release @@ -17265,6 +17266,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9879ca01 pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x991f1be6 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a10f513 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dcf4929 __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ec4de87 pnfs_generic_search_commit_reqs @@ -17276,7 +17278,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb42a283f __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb81e5d4e nfs4_schedule_stateid_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe8f495c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd816af4 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeb28c6a nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1cc73ad pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc47e5cdc nfs4_init_deviceid_node @@ -17290,7 +17292,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf15aeff pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1ab4380 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5adacd8 pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec5670aa __traceiter_pnfs_mds_fallback_pg_init_write @@ -17302,6 +17303,7 @@ 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 0xfbb40865 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc358122 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfda34665 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe30c6d5 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0db6b02d opens_in_grace @@ -17312,7 +17314,7 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4a692446 nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5acd686f nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd45d80ac nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x21e3e985 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x1a0f3d13 nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0cf25e84 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0fb7c343 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x14494cbd o2nm_node_put @@ -17485,6 +17487,7 @@ 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 0x97682855 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1ce2b83 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0xa25c7799 dccp_done EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa1047e7 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0xb04683ed dccp_create_openreq_child @@ -17497,7 +17500,6 @@ EXPORT_SYMBOL_GPL net/dccp/dccp 0xd571658a dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xde1f06ce dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf7e3c7d dccp_sendmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0xe43f6327 dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8480249 dccp_send_sync @@ -17557,17 +17559,17 @@ EXPORT_SYMBOL_GPL net/ife/ife 0x73052aaf ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode EXPORT_SYMBOL_GPL net/ife/ife 0xf418cc62 ife_decode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x1d495d66 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7dd424e2 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf8cc0136 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x04a31ad9 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xca651d0a esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfdba1fc7 esp_input_done2 EXPORT_SYMBOL_GPL net/ipv4/gre 0x466c23eb gre_del_protocol EXPORT_SYMBOL_GPL net/ipv4/gre 0xf61b757a gre_add_protocol EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x32f27796 inet_diag_bc_sk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x42f82a0b inet_diag_dump_one_icsk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x54861cce inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7983e538 inet_sk_diag_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x901ff82f inet_diag_msg_attrs_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb3fc56a8 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbfaefce4 inet_sk_diag_fill EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xde8f253d inet_diag_register EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe149c1b8 inet_diag_find_one_icsk EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfccf3a56 inet_diag_unregister @@ -17620,9 +17622,9 @@ EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x73c0d0e3 setup_udp_tunnel_sock EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9d46e60a udp_tunnel_sock_release EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe5e27e6f udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0a6e55d5 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x378250f1 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4ce66d50 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0a650ff8 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x192db3ff esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xcd1ccc1c esp6_output_tail EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5c0bca34 ip6_tnl_rcv_ctl EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5c834b0c ip6_tnl_xmit_ctl EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdc824110 ip6_tnl_encap_setup @@ -17732,10 +17734,10 @@ EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf86b3982 ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfaed24ea ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb6e6d9b ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5fa9bf8d ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x82f2d3c8 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbe168fc3 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xebb2eb2b register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x05d6f514 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7c0bc2ea register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc9a5ad09 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf8675136 ip_vs_conn_in_get_proto EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0f83b1a5 nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x48b11d8a nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x555fdd3d nf_conncount_add @@ -18091,10 +18093,10 @@ EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x18691287 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x38a54fd4 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x3d77eca9 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x5bd41e48 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x465c159d sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5c2a2f11 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8e847e7a sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe8479213 sctp_for_each_endpoint EXPORT_SYMBOL_GPL net/smc/smc 0x091543ea smc_proto EXPORT_SYMBOL_GPL net/smc/smc 0x44cf79f6 smcd_handle_event EXPORT_SYMBOL_GPL net/smc/smc 0x6718b98d smcd_handle_irq @@ -18105,286 +18107,286 @@ EXPORT_SYMBOL_GPL net/smc/smc 0xdbffdd38 smcd_alloc_dev EXPORT_SYMBOL_GPL net/smc/smc 0xe478b407 smc_hash_sk EXPORT_SYMBOL_GPL net/smc/smc 0xef99a431 smcd_register_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1634f40d 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 0x87d4fc6f gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9eb44f9d gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc91b6031 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x635104b7 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x88d7643d gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc7c141d3 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 0xe3f5a0ee svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00416332 __xdr_commit_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a9c6fc sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00c8c594 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f987b1 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02cddf20 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e6e386 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038f1ad5 rpc_clnt_xprt_switch_remove_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x042819a4 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04af05e7 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0542e5dc svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x053e09eb svc_fill_symlink_pathname EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0622e65d rpcauth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08138dd6 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c3eebe rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07164def xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07b4231d rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09152c7a write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a648733 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad950b9 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a5e41b8 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b74ee38 xprt_complete_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c020a0e sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c1fb61b rpcauth_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c425baa xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cbdc405 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cc838f4 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cca8069 svc_xprt_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cddf2eb rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8bbd82 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x121ec9ad xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12351326 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13600aa0 rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13845e96 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x157c7dea rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ca3c00 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18989f58 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18f313f9 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13f679fd rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f4f818 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154abd36 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176b7a26 xprt_setup_backchannel EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190e6ee3 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a02072d xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bfd5aab xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7fa2f6 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dbd17ec rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19189923 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x199f4c88 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cbf2865 svc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8978d2 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fccdc96 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20ea9419 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23050566 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25835a92 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c9d0be xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6fad60 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8f6265 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f354f8e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f529a94 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2209aeaf rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228c9343 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2534ca5e xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2621bab7 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26747cd9 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278eae48 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2864798a xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28ec8e63 rpc_put_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c420ab1 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c65933d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d6c33dd svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x292c153b rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa33623 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2abdef51 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b3bf465 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d2bb76a xprt_wait_for_reply_request_def EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d97c96e xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2da7e55d rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ea578c9 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f81e9c1 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x302f895c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3049f172 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3080182b svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ea91aa0 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff6d5f6 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3104759b rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312fd3a2 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a0f1c2 xprt_free_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32a8340c xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33b4e6e3 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34b5fca5 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32462a2a rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x384ec6e6 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37423686 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377dd5f3 svc_drop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a327723 xprt_free_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b5d0131 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b7ba770 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e014e8a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8ea6cb svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc1a3a1 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cffa76b rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d097aa4 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e211d40 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f2e6660 rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4096cd8a svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436a9b20 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x437cbd26 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x439f3949 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x442e82fd svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45a2705d svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fbc0dc4 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40cb2460 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42cefb3d rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43d97672 auth_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b3f5f0 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ef1a7c xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x466ed60d xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x478eb17e svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4832b6a9 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49e706af xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ae58ffb rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x495c642f rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c3b4c8d xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cea43f8 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d0877b3 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d72ff71 svc_addsock 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 0x4ed8b278 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51a27f56 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5302e032 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f509f54 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5148d188 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52c782f8 rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c4386a xdr_init_decode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5505f816 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c13692 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x587747b3 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5524b5ef rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55ff427a xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56b49ec7 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x596873a4 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59cb6f68 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59e4fc05 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59f44f6b xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a3a791c xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b242498 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b8ea436 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c51f334 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c9dff32 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5db2b133 svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e28b39c rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e321ab4 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e7bac8c xdr_set_pagelen EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e992499 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ea3eee5 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fc3e27a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f77b4e7 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606d5848 svc_xprt_names EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60da6cf8 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61095551 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62c69ced xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6357ad7a rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63f70535 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ea6bef xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x647f204f svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64805ccc rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b336b9 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d2326c svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x688d0e05 rpc_clnt_iterate_for_each_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c72e5b xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e7cece svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69dfa7d7 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69f6167e xprt_force_disconnect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ad08a51 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ada41a1 xdr_stream_move_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b697eb0 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb2f4ed svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f16b8c1 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f658519 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x710d67f4 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c3b1ca0 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c67de9f rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ecee9f6 xdr_write_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c8b078 svc_rpcbind_set_version EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72578f63 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7291192b rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a4b149 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x739f0cdf svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d12758 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768ebc88 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d12e06 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x761757f7 xdr_stream_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77b26a57 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x796f42bc svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a2e749b rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b1f0622 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c24b901 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c864288 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7806c489 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aa4f2ac xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ada6ce6 auth_domain_lookup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d53ae1b rpc_find_or_alloc_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db11fe7 rpc_mkpipe_dentry EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7df58e2a rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e27d4da cache_create_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e5cd289 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc86531 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fff81c6 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81d82647 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82817a39 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f3b8cca rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81054275 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82023729 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8218ed0b xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8288a954 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x839e72f8 rpc_clnt_manage_trunked_xprts EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b5ea13 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86058bc9 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866a0f0a rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87472516 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83ffd0c3 xprt_wait_for_buffer_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87d2e9bd cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x883c4bac rpc_call_null EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8973459e xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a03538 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a274e10 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aee74e9 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b10f2cb xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b8364ff svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a91444a xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c0a7fa0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d5f0890 xprt_release_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da8ec20 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db5afd0 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e7da61d rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eab605d svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90ca9865 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e2bef0b svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eaf173f xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b8d0b9 xdr_init_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90dec0be svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9184d417 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e6575b bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95f8c2d6 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x923d1537 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x929c3b45 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9405b008 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96427d2d xprt_reconnect_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97a9a9cd svc_xprt_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97e21eda gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x980105ea rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c669e9 rpc_put_sb_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99dd3b09 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99b5aed4 rpcauth_unwrap_resp_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a10913c cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a940d41 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ab02cce xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf3940c xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bfdb6a7 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b6cdcdf svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c27ec2c xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c4af375 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f446f08 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1052d8b rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa589bdb2 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e21b75 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6b69325 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c14539 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa91ec7db rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b9427c rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e6203f xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c8b6b7d svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e925a6a xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa063aa38 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2ba4634 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4c41b24 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d7c5f8 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d02a7 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa75f1de6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7a30f2c xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c3205d svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c605b1 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8568c2f rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa90f5d95 svc_xprt_init EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa1e20a4 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6a0a02 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaac80b5e rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab297db9 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab538651 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab7229e1 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac453860 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae9b4f7d rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaea8eb62 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeebf142 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6db930 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa73c2ef rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae78102 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb6a185 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac082a36 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacf13768 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaea0cf34 rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafa309f1 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b7e21d xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3cacfae rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f9529d xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb292e92d unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f69bd5 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb55bd85e rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9485abd xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb674c01b svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6eb6d9b rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb70b8fb1 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb79c379c rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8bf7250 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9208bd9 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb956d3c4 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba51a81e xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5ec225 read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd1d8779 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7c3e24 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbea44929 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf943ee6 rpc_release_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc010cf9c xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05f56d6 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfaa82db svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc107fa08 rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1f319be svc_authenticate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2f857c6 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3914e97 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc43fea49 rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d648b2 rpc_peeraddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d94da3 rpc_pton EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6379b56 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc86c29f4 xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9cf57e2 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb3cd30 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd62420 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3453e4 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca9598f4 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc5cf883 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd5264c6 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd89e5a6 rpcauth_init_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfe4fb5a svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e60dce xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd182d417 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd25c5d6b rpc_num_bc_slots EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3cebcbc xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c69062 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd57a9cfb xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a9a062 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd793d5d8 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd841dfa0 xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84c5b89 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd98511c2 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d2cbc2 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e9922a xdr_stream_decode_opaque_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9fe707e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda3c0ca6 rpc_sleep_on_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4ccbc5 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb83d610 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb62cfa2 xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbda0432 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcb96530 svc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcf9ac7a cache_seq_stop_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6e5466 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdddacfa8 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2ac904b rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3bef7b1 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe446a186 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf5d22b5 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe02c2903 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c24793 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0f917d1 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe457bac1 rpc_sleep_on EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe515be90 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53426ea svc_fill_write_vector EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe660c5c7 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7618a8b rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6347ba0 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe64af01f xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe66e728c xprt_reserve_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8396ccc sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8cb31cc rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea548d21 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0f288f xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed156fe4 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb08d7f7 rpc_set_connect_timeout 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 0xeeb59217 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef3733ab rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefe3668c svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0dab519 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf15378ac xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf16b6867 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1826849 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf525be62 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf68076c1 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6985599 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6a8984b svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf747b2b9 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf754cb5c rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf777814c svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf82f5a5b rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85eeec9 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa52ac04 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd6b047a svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe395a3f rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff783fad rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8e2b6a xdr_write_pages -EXPORT_SYMBOL_GPL net/tls/tls 0x1046a613 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x1055c5c8 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xb99dd6f9 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xbcdbca42 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf333d9b3 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3ff5c03 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4195a21 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f82ace xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbe01b7f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdefe230 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe300046 rpc_call_sync +EXPORT_SYMBOL_GPL net/tls/tls 0x5ee48b43 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x73290291 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x88df361f tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xd3086ec8 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 0x04982e89 virtio_transport_notify_poll_in EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07ccb931 virtio_transport_stream_dequeue @@ -18486,6 +18488,7 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x93a0f825 ipcomp_input EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL vmlinux 0x000360dd hv_ivm_hypercall EXPORT_SYMBOL_GPL vmlinux 0x0013b3f6 acpi_subsys_freeze EXPORT_SYMBOL_GPL vmlinux 0x0019d1db rio_del_device EXPORT_SYMBOL_GPL vmlinux 0x001dad5e devm_of_icc_bulk_get @@ -18555,7 +18558,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x027daabe anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0x028e4fbd udp_abort EXPORT_SYMBOL_GPL vmlinux 0x0290caec nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL vmlinux 0x02b2293d sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table EXPORT_SYMBOL_GPL vmlinux 0x02cfcf72 pinctrl_parse_index_with_args @@ -18631,6 +18633,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x0527e20a led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052ddd3d nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x0531bc3b filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0x05362f81 iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update @@ -18694,7 +18697,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0779190d tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x077d877d debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x078385e2 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x078ed44e sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x07918f3f ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x079780fa vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x079b324a xhci_suspend @@ -18703,7 +18705,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x07d0a269 power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x07d0ad3c yield_to -EXPORT_SYMBOL_GPL vmlinux 0x07dac8f2 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x07e05192 dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x07fac064 irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x080ea10c pinctrl_utils_free_map @@ -18723,6 +18724,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x086f76a2 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match EXPORT_SYMBOL_GPL vmlinux 0x08a14103 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x08a77e2f tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x08acab8a tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x08b6512b __kthread_init_worker @@ -18778,7 +18780,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0a92c89b stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x0a93f615 pwm_free EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0ad14b0a tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x0ae4915a ahci_platform_enable_resources EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b0df00b devm_devfreq_event_add_edev @@ -18950,6 +18951,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x10ae3185 pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash EXPORT_SYMBOL_GPL vmlinux 0x10c85856 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x10d07432 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x10d0e1c3 component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0x10d20887 hisi_uncore_pmu_start EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init @@ -18980,7 +18982,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp EXPORT_SYMBOL_GPL vmlinux 0x120889d5 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x120d6d32 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x1211cff1 unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL vmlinux 0x121ae621 devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier @@ -19001,6 +19002,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x12ea352c crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister EXPORT_SYMBOL_GPL vmlinux 0x12f6874e power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x12fbb0f6 usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0x13009372 vmbus_hvsock_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register @@ -19089,7 +19091,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x15a44872 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x15a9ee52 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x15abda53 blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15b7e038 trace_get_event_file @@ -19120,6 +19121,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x16919b14 hisi_uncore_pmu_get_event_idx EXPORT_SYMBOL_GPL vmlinux 0x169c6a58 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x16a2a85c sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x16ab4c3a l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x16c495df usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend @@ -19169,7 +19171,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x18324463 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x18362af8 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x1838448e mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x1849b21e __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x184fe4a9 clk_hw_init_rate_request @@ -19191,7 +19192,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x18f7df79 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x18f92e9f ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190df699 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x19167119 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert EXPORT_SYMBOL_GPL vmlinux 0x192c8138 kvm_put_kvm @@ -19243,7 +19243,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow EXPORT_SYMBOL_GPL vmlinux 0x1af77846 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b0e9d12 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x1b19254c mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0x1b4b9428 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x1b4c3b62 gpiochip_line_is_open_source @@ -19266,6 +19265,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0x1bf018d7 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x1bf7f0bc tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x1c0396b6 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x1c13e53d crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x1c170d9b xen_register_device_domain_owner @@ -19295,6 +19295,7 @@ 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 0x1cd44f98 hyperv_paravisor_present EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral EXPORT_SYMBOL_GPL vmlinux 0x1cf17c52 kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x1cfe96e3 pwm_request_from_chip @@ -19305,7 +19306,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0x1d278e53 gnttab_dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x1d29996d cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x1d3086cf xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x1d3b48d8 rio_mport_get_feature @@ -19359,6 +19359,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea45059 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x1ea7d532 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister @@ -19398,13 +19399,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x1ff200d7 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x1ff3e1d1 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x201302a2 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x201c6610 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x201c96ad seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x201d3777 ftrace_set_filter_ips EXPORT_SYMBOL_GPL vmlinux 0x202a4ab2 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write EXPORT_SYMBOL_GPL vmlinux 0x203956f9 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x203b6dfe sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x203bda78 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x204129b9 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference @@ -19478,6 +19479,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x23014176 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x230380ba sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x230547fa usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x23066b71 rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0x231afdc6 serial8250_clear_and_reinit_fifos @@ -19496,6 +19498,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x236f5af9 gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2371b589 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x237926fd crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x238085e7 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x2396da24 virtio_config_changed @@ -19525,7 +19528,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x246b80c1 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem EXPORT_SYMBOL_GPL vmlinux 0x24759ab8 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2477cb73 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray @@ -19564,13 +19566,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25ea62ed tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x25eacb04 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x25f4d4ee phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x25f7ba7d __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x25fe4af5 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0x2602ede4 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x2622b5fb tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x2632e209 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x2637c524 da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x2639506c kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0x2651b353 nvme_auth_stop @@ -19605,6 +19607,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit EXPORT_SYMBOL_GPL vmlinux 0x2731139e qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0x273a8142 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x2748f9fc sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x274c3963 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x27503f56 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x275818d3 sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x276fa673 hv_set_memory_enc_dec_needed @@ -19682,7 +19686,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x29e82def soc_device_register EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x29f3d65d mtk_clk_register_factors -EXPORT_SYMBOL_GPL vmlinux 0x29ff5678 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x2a00e5f3 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x2a07da72 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0x2a0b417b max8997_update_reg @@ -19712,7 +19715,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2afc5f5a icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x2afe6db0 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b1ee3d2 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b45a8c7 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x2b46901e alloc_dax_region @@ -19776,7 +19778,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2cc4b8ec tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0x2cc7c49c ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x2cd3d296 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x2cd9aa66 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x2cdf0315 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x2ce553db iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add @@ -19939,7 +19940,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x321a1334 acpi_dma_request_slave_chan_by_name EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config EXPORT_SYMBOL_GPL vmlinux 0x323d6c07 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x324d23c2 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x32578849 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x325b4374 k3_udma_glue_request_rx_chn @@ -20037,6 +20037,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x359256cf pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider EXPORT_SYMBOL_GPL vmlinux 0x35c37c25 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x35ccdc19 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0x360004e9 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x3604c7ea devm_usb_put_phy @@ -20071,6 +20072,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3716b927 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x373dcfcd led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x374617f2 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x374a9aad usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read EXPORT_SYMBOL_GPL vmlinux 0x3751868a balloon_page_list_dequeue @@ -20141,7 +20143,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x39b85a93 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39c4dd7e meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x39c6c0be sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39e02fe0 virtio_require_restricted_mem_acc @@ -20170,7 +20171,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3a9ebae5 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x3aa45d46 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x3aa57a3a fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x3ab7f097 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x3ab8690d ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x3aba0d1f devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location @@ -20234,6 +20234,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3c8db818 usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x3c8fc193 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x3c99ea8e crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x3cb23d03 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x3cb3f5f4 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x3cb892fb genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0x3cc80c80 dw_pcie_find_ext_capability @@ -20267,6 +20268,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3d9957aa screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3da05080 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x3da2a89b sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x3da97571 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled EXPORT_SYMBOL_GPL vmlinux 0x3dac6d74 of_platform_depopulate @@ -20349,13 +20351,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x4043de44 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x40518794 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x4054667d pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x40598d37 serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0x405e3efd nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x405ef988 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x406229a4 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x406ff6d0 meson_sm_get @@ -20378,7 +20380,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle EXPORT_SYMBOL_GPL vmlinux 0x41066097 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x4114052d clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x4114aa20 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x4116f9ef iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature @@ -20393,6 +20394,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x415fbf6f fsl_mc_bus_dpdmai_type EXPORT_SYMBOL_GPL vmlinux 0x416532e8 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x417065d7 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x417244fa usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0x4172b5d3 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x4177181b to_nd_region EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval @@ -20428,10 +20430,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x42897636 pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x429007f0 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4296eaac bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode EXPORT_SYMBOL_GPL vmlinux 0x42a91c5b of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42c79a01 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x42cb8660 pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0x42e5f32e phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs @@ -20455,7 +20457,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x43843714 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4385ae00 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get EXPORT_SYMBOL_GPL vmlinux 0x439d4d63 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x439d5099 phy_package_leave @@ -20612,7 +20613,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4910dbc4 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x4910fea8 bio_poll EXPORT_SYMBOL_GPL vmlinux 0x4913a448 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x49177667 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type @@ -20653,6 +20653,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4a61c3f4 vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x4a63e647 irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x4a657f7b irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x4a6c69f7 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x4a703114 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x4a769322 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x4a7ba3ff xdp_return_frame_rx_napi @@ -20662,6 +20663,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4aa6eb06 ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x4aae6715 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x4abf53dc clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x4ac7a994 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x4acf3a2c crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x4adba34e ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x4ae0995d blk_mq_sched_mark_restart_hctx @@ -20688,6 +20690,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4bf1fa38 i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0x4bf7b670 devm_hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4bfe47d2 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x4bfe75b1 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x4c0245fb skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x4c04c970 stmpe_reg_write @@ -20762,6 +20765,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4e4f4e46 of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x4e595db4 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x4e614410 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x4e65f447 vmbus_set_sc_create_callback EXPORT_SYMBOL_GPL vmlinux 0x4e6cdaf1 kvm_get_kvm_safe @@ -20904,6 +20908,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5365b7c3 devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x536cc431 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53789df4 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x5385fe5d cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x538650c3 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str @@ -20932,11 +20937,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x544e9e28 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x545d766f gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5465c225 register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x5469b9ad dax_zero_range EXPORT_SYMBOL_GPL vmlinux 0x547c4917 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x547fafc5 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x548d9281 acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5498f28d sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put EXPORT_SYMBOL_GPL vmlinux 0x54accb76 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x54c51109 blk_queue_required_elevator_features @@ -20967,7 +20974,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x55908b43 crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x55a10f8a dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x55a69d2a devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x55b033d0 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x55bc9615 __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0x55c0102d fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x55c3383b clk_register_mux_table @@ -20999,7 +21005,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x56bfbbbc posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x56c30cf2 acpi_dev_state_d0 EXPORT_SYMBOL_GPL vmlinux 0x56db906f watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x56e0e0e3 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter EXPORT_SYMBOL_GPL vmlinux 0x56ea7f77 hisi_uncore_pmu_event_update EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers @@ -21080,7 +21085,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x59f081d8 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f3caa3 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0x59fac038 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x5a00f3fc clk_register_hisi_phase EXPORT_SYMBOL_GPL vmlinux 0x5a0662f5 crypto_aes_set_key @@ -21231,6 +21235,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private EXPORT_SYMBOL_GPL vmlinux 0x5f6f3935 fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x5f737008 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5f841864 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x5f8841a5 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x5f95e5f9 __irq_domain_add @@ -21281,10 +21286,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x612c15df virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x614c7eef gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x614ef28c sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x61779542 iommu_sva_find EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6188a313 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x61963dfd rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher @@ -21336,7 +21339,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x63710a9d nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x6374113a badblocks_store EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x638c1d08 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x63997e37 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x63bc2b76 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare @@ -21379,7 +21381,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x64fc6b4d bgmac_phy_connect_direct EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650a28e7 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x651094c5 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x6516261e ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x651982e7 usb_remove_phy @@ -21499,7 +21500,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x692d173d folio_invalidate EXPORT_SYMBOL_GPL vmlinux 0x6932499c __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0x6938669b ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x693eba27 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x695b49a0 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x695ec4b3 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle @@ -21576,6 +21577,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bde38ad sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x6bde7f99 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler @@ -21637,6 +21639,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dd30b8c alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x6dd3c963 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6dd52f1a xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id EXPORT_SYMBOL_GPL vmlinux 0x6de99884 ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0x6df9acbf devm_gpiod_put_array @@ -21748,7 +21751,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x71d5ce4c devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x71d8215f debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x71e3efc4 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x721a2aad bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x72213620 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify EXPORT_SYMBOL_GPL vmlinux 0x723e2cc0 ip_icmp_error @@ -21763,6 +21765,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu EXPORT_SYMBOL_GPL vmlinux 0x72a622f4 user_describe EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72c31e4f sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x72e16651 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x72eb25a2 pm_clk_runtime_resume @@ -21811,6 +21814,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x74ae128f vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9937e espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74c5ebc6 pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint @@ -21829,6 +21833,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x752423d8 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL vmlinux 0x7537c309 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x7537f0da irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x753d097e __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x7542c6a2 __acpi_node_get_property_reference @@ -21928,6 +21933,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x782b3779 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x782c827f debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0x78312e08 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7834d563 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x783d0a6d ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0x783f7195 blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support @@ -22024,6 +22030,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7b1412a9 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x7b1adf2b fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x7b1c469b clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b2758da mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x7b2a208c dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0x7b2d91eb meson_pmx_get_groups EXPORT_SYMBOL_GPL vmlinux 0x7b3155db devm_serdev_device_open @@ -22202,6 +22209,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x8081d4b1 acpi_find_child_by_adr EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80907360 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x80a53fbc pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x80a5f724 adp5520_clr_bits @@ -22241,6 +22249,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81e835d1 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x81ecdff7 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x81f994d8 vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x81fe1d4c of_icc_get_from_provider @@ -22256,7 +22265,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x828befdd kill_device EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82b928a6 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x82cf7d9b gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure @@ -22282,6 +22290,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x83533434 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem EXPORT_SYMBOL_GPL vmlinux 0x83545523 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x835864ff sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x8359a2da phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0x836c2537 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full @@ -22370,7 +22379,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x864739ec acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0x864cbfd4 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x864ec392 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x8650a9f0 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq EXPORT_SYMBOL_GPL vmlinux 0x86683cd0 ahci_host_activate @@ -22505,7 +22513,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8b791704 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8b884949 icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall EXPORT_SYMBOL_GPL vmlinux 0x8ba0ab8e ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op @@ -22690,6 +22697,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource EXPORT_SYMBOL_GPL vmlinux 0x91c9a847 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x91d12130 unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91f236b7 device_set_wakeup_enable @@ -22737,7 +22745,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x93236dc1 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x932558a1 kvm_vcpu_on_spin EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932b3164 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get @@ -22897,6 +22904,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x98f4fd56 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x99093535 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x9923684c irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9930f0c7 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x993ee190 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x9944eb98 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x994e17ac ti_sci_get_handle @@ -22917,7 +22925,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x99fb1807 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0x9a06909d of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a16f435 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x9a17a752 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining @@ -22954,6 +22961,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9af31b5e virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9b07b84a usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9b0da665 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0x9b1163ec hisi_pmu_init EXPORT_SYMBOL_GPL vmlinux 0x9b1a50ec switchdev_handle_port_obj_del @@ -22986,6 +22994,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9bee493c iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x9bef53b0 pinmux_generic_get_function_groups EXPORT_SYMBOL_GPL vmlinux 0x9c024981 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x9c0485cb sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x9c0fb445 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x9c137c97 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x9c28c578 sb800_prefetch @@ -23079,6 +23088,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9f35a67d regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x9f3e86bd dprc_get_obj_region EXPORT_SYMBOL_GPL vmlinux 0x9f4ba72e pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x9f4cecf7 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x9f4e8955 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg @@ -23132,7 +23142,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa1387bfb pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0xa13aa439 i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa153a7d8 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end EXPORT_SYMBOL_GPL vmlinux 0xa1994337 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0xa19c4370 spi_async @@ -23220,6 +23229,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa458211f nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa46095c6 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xa4693766 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0xa4717743 iommu_present EXPORT_SYMBOL_GPL vmlinux 0xa474d715 ping_getfrag @@ -23241,6 +23251,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa4d5f1e0 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xa4e1d1fc reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xa4ebeff8 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa4f11301 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get EXPORT_SYMBOL_GPL vmlinux 0xa4fc86d1 device_attach EXPORT_SYMBOL_GPL vmlinux 0xa4fccf48 devm_of_icc_get @@ -23372,6 +23383,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa94b18a7 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xa94ff343 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa95c8f1d mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xa96508ca of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler EXPORT_SYMBOL_GPL vmlinux 0xa988f8f8 irq_gc_mask_disable_reg @@ -23446,6 +23458,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xac645d2d battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0xac730abe regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xac76f44d pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xac79ba63 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0xac8fc9e0 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xaca2e61d imx_pinconf_set_scu EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put @@ -23561,7 +23574,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare EXPORT_SYMBOL_GPL vmlinux 0xb0795fbc devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb0a8d5be mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0cbd6c3 to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0xb0d0b25a component_master_del @@ -23620,6 +23632,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues EXPORT_SYMBOL_GPL vmlinux 0xb302e9b1 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb31fd76e xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0xb3311f5d ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0xb338f156 xenbus_dev_is_online EXPORT_SYMBOL_GPL vmlinux 0xb34a7ee6 check_move_unevictable_pages @@ -23630,7 +23643,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb38fa4a1 __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xb39cb6b2 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0xb39ceb01 ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xb39f9fac sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xb3a7adfe i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0xb3b6655b pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0xb3cf1f69 rdev_get_regmap @@ -23695,6 +23707,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb5d231d6 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xb5ee9810 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xb5fd971f mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xb61428f0 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xb61bf899 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device @@ -23830,7 +23843,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xba9b9626 blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0xbaae0719 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0xbab35268 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xbab97c5c mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents EXPORT_SYMBOL_GPL vmlinux 0xbabcf489 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0xbacf86a8 pcim_doe_create_mb @@ -23907,6 +23919,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name EXPORT_SYMBOL_GPL vmlinux 0xbd224b0d pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xbd2307c7 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xbd29efb8 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xbd366611 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0xbd36dd36 fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq @@ -23973,7 +23986,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0xbf332925 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xbf3f1f0c mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xbf44a3af tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate EXPORT_SYMBOL_GPL vmlinux 0xbf528962 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xbf5477f4 __nvdimm_create @@ -24043,6 +24055,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xc1a775b2 trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0xc1afd205 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0xc1b399ba anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xc1b43cf3 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc1ba3e1e xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xc1c16cbf clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0xc1c6418d fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0xc1c6d969 sock_diag_register_inet_compat @@ -24112,6 +24126,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 EXPORT_SYMBOL_GPL vmlinux 0xc4370cda dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc437af8f udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xc439011c task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get @@ -24155,7 +24170,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc565a83a dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc570d6d9 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xc5736355 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0xc57563fc of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off @@ -24174,7 +24188,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc5c1acfc blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0xc5d03d08 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0xc5d2ded5 devm_regulator_get_enable_optional -EXPORT_SYMBOL_GPL vmlinux 0xc5dc6fde sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xc5ed344d spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0xc5ff67c5 xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0xc6124d63 skb_to_sgvec @@ -24267,6 +24280,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets EXPORT_SYMBOL_GPL vmlinux 0xc89ca056 mtk_clk_register_muxes EXPORT_SYMBOL_GPL vmlinux 0xc8aa0d88 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xc8b2dfe3 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xc8b8a75c mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xc8ba5759 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xc8bb3598 bsg_setup_queue @@ -24298,6 +24312,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xc972d35e tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0xc97b2d2e ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xc98187c5 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc988e06b edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xc9986375 sync_page_io @@ -24316,7 +24331,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xca08221b vmbus_request_addr_match EXPORT_SYMBOL_GPL vmlinux 0xca0ed65d dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xca2f0e43 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xca2fda24 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops @@ -24350,7 +24364,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xcb70ecd8 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0xcb8c8af4 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0xcb957641 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb983703 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xcbacd65f regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0xcbb56f03 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xcbbcfa20 crypto_alloc_acomp @@ -24396,6 +24409,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start EXPORT_SYMBOL_GPL vmlinux 0xccfeb848 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xcd09d6e0 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xcd138071 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xcd1f397c usb_deregister EXPORT_SYMBOL_GPL vmlinux 0xcd23f10f crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size @@ -24528,7 +24542,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xd173e387 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0xd181b7b3 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd18ca92b sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xd18cf999 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xd195027c ip6_input EXPORT_SYMBOL_GPL vmlinux 0xd19bf2dd dpbp_close @@ -24547,6 +24560,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd22e593c of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0xd22fc93b iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0xd233c408 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd23f1570 hv_tdx_hypercall_fast EXPORT_SYMBOL_GPL vmlinux 0xd2405ed1 usb_acpi_port_lpm_incapable EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block @@ -24631,7 +24645,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xd4c4df1b fsl_mc_portal_free EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd4d7e84a ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xd4db258b xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4f477c9 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf @@ -24670,6 +24683,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd6b01772 rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0xd6ba5436 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd6bb68db mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xd6c13c86 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source EXPORT_SYMBOL_GPL vmlinux 0xd6e798c1 devm_gpiod_get @@ -24690,7 +24704,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xd77254cd of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xd7943583 fsl_mc_bus_dprtc_type EXPORT_SYMBOL_GPL vmlinux 0xd795e722 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xd79e3547 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xd79f3721 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns @@ -24846,7 +24859,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdccaba52 tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xdce02ef6 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcf32242 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xdd03fb44 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd1b5a24 nvme_auth_wait @@ -25062,7 +25074,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe427a796 fat_attach EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe430a350 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0xe43580a9 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xe4374e4e tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0xe43e9c87 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0xe452ea1e regmap_check_range_table @@ -25116,13 +25127,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xe60dc489 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0xe610415d __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xe6212675 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array EXPORT_SYMBOL_GPL vmlinux 0xe628fbff dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0xe6333a21 __device_reset EXPORT_SYMBOL_GPL vmlinux 0xe63e6dc9 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xe63f8217 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xe652eda2 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xe65d2981 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0xe66deedc key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xe66fbcc4 pingv6_prot @@ -25188,6 +25197,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xe8750be5 pci_p2pmem_alloc_sgl EXPORT_SYMBOL_GPL vmlinux 0xe88d097a clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0xe89a306e pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xe89eed11 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xe8a59cfa devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xe8a703ce acpi_dma_request_slave_chan_by_index EXPORT_SYMBOL_GPL vmlinux 0xe8adef0a phy_start_machine @@ -25308,8 +25318,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec94b837 cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0xec97c8dd power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xec9a9509 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0xeca537d2 of_css +EXPORT_SYMBOL_GPL vmlinux 0xecac485f xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0xecb04310 i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map @@ -25334,13 +25344,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xed610942 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xed65f1d6 devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0xed711ab4 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xed82c807 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xed83b0f8 acpi_nfit_ctl EXPORT_SYMBOL_GPL vmlinux 0xed85cffd cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr EXPORT_SYMBOL_GPL vmlinux 0xed955b95 of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xedbaebfb pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xedc1de13 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0xedc8fa0c sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xedd0cc0a trace_output_call @@ -25472,11 +25482,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xf20db363 devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xf235e6ca kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xf2382682 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter EXPORT_SYMBOL_GPL vmlinux 0xf23ee965 rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0xf246efc4 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xf24e95b0 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xf24fc2b7 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xf253c4d0 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xf2591d43 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xf27a1fd6 fsnotify_put_group @@ -25485,7 +25495,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf290eaa2 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf2a86650 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xf2aa2bdf sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xf2aabd62 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf2b9a0bd gpiod_cansleep @@ -25584,7 +25593,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5d68591 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0xf5e5c3ef usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0xf5ee2feb serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xf5f1194c xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf60565d6 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xf605d0cd fscrypt_set_bio_crypt_ctx @@ -25681,7 +25689,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf94163c2 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf9590fbc register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version EXPORT_SYMBOL_GPL vmlinux 0xf971274f ahci_platform_find_clk EXPORT_SYMBOL_GPL vmlinux 0xf988d479 subsys_dev_iter_init @@ -25798,7 +25805,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type EXPORT_SYMBOL_GPL vmlinux 0xfdbecaf4 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xfdc7516e clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xfdc8dd31 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xfdd38220 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xfdd5f25d __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0xfdd63745 scsi_get_vpd_page @@ -25830,6 +25836,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe97a2aa mtk_clk_simple_probe EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9b1053 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xfe9b33cd mtk_pctrl_show_one_pin EXPORT_SYMBOL_GPL vmlinux 0xfea1edce rockchip_pcie_enable_clocks EXPORT_SYMBOL_GPL vmlinux 0xfeb081b2 bpf_map_inc_with_uref diff -u linux-azure-6.2-6.2.0/debian.azure/abi/fwinfo linux-azure-6.2-6.2.0/debian.azure/abi/fwinfo --- linux-azure-6.2-6.2.0/debian.azure/abi/fwinfo +++ linux-azure-6.2-6.2.0/debian.azure/abi/fwinfo @@ -130,6 +130,7 @@ firmware: amdgpu/gc_11_0_0_mec.bin firmware: amdgpu/gc_11_0_0_mes.bin firmware: amdgpu/gc_11_0_0_mes1.bin +firmware: amdgpu/gc_11_0_0_mes_2.bin firmware: amdgpu/gc_11_0_0_pfp.bin firmware: amdgpu/gc_11_0_0_rlc.bin firmware: amdgpu/gc_11_0_0_toc.bin @@ -138,6 +139,7 @@ firmware: amdgpu/gc_11_0_1_mec.bin firmware: amdgpu/gc_11_0_1_mes.bin firmware: amdgpu/gc_11_0_1_mes1.bin +firmware: amdgpu/gc_11_0_1_mes_2.bin firmware: amdgpu/gc_11_0_1_pfp.bin firmware: amdgpu/gc_11_0_1_rlc.bin firmware: amdgpu/gc_11_0_2_imu.bin @@ -145,6 +147,7 @@ firmware: amdgpu/gc_11_0_2_mec.bin firmware: amdgpu/gc_11_0_2_mes.bin firmware: amdgpu/gc_11_0_2_mes1.bin +firmware: amdgpu/gc_11_0_2_mes_2.bin firmware: amdgpu/gc_11_0_2_pfp.bin firmware: amdgpu/gc_11_0_2_rlc.bin firmware: amdgpu/gc_11_0_3_imu.bin @@ -152,6 +155,7 @@ firmware: amdgpu/gc_11_0_3_mec.bin firmware: amdgpu/gc_11_0_3_mes.bin firmware: amdgpu/gc_11_0_3_mes1.bin +firmware: amdgpu/gc_11_0_3_mes_2.bin firmware: amdgpu/gc_11_0_3_pfp.bin firmware: amdgpu/gc_11_0_3_rlc.bin firmware: amdgpu/gc_11_0_4_imu.bin @@ -159,6 +163,7 @@ firmware: amdgpu/gc_11_0_4_mec.bin firmware: amdgpu/gc_11_0_4_mes.bin firmware: amdgpu/gc_11_0_4_mes1.bin +firmware: amdgpu/gc_11_0_4_mes_2.bin firmware: amdgpu/gc_11_0_4_pfp.bin firmware: amdgpu/gc_11_0_4_rlc.bin firmware: amdgpu/green_sardine_asd.bin @@ -1452,6 +1457,12 @@ firmware: rtl_bt/rtl8723b_fw.bin firmware: rtl_bt/rtl8723bs_config.bin firmware: rtl_bt/rtl8723bs_fw.bin +firmware: rtl_bt/rtl8723cs_cg_config.bin +firmware: rtl_bt/rtl8723cs_cg_fw.bin +firmware: rtl_bt/rtl8723cs_vf_config.bin +firmware: rtl_bt/rtl8723cs_vf_fw.bin +firmware: rtl_bt/rtl8723cs_xx_config.bin +firmware: rtl_bt/rtl8723cs_xx_fw.bin firmware: rtl_bt/rtl8723ds_config.bin firmware: rtl_bt/rtl8723ds_fw.bin firmware: rtl_bt/rtl8761a_config.bin @@ -1460,6 +1471,8 @@ firmware: rtl_bt/rtl8821a_fw.bin firmware: rtl_bt/rtl8822b_config.bin firmware: rtl_bt/rtl8822b_fw.bin +firmware: rtl_bt/rtl8851bu_config.bin +firmware: rtl_bt/rtl8851bu_fw.bin firmware: rtl_bt/rtl8852au_config.bin firmware: rtl_bt/rtl8852au_fw.bin firmware: rtl_bt/rtl8852bu_config.bin diff -u linux-azure-6.2-6.2.0/debian.azure/abi/version linux-azure-6.2-6.2.0/debian.azure/abi/version --- linux-azure-6.2-6.2.0/debian.azure/abi/version +++ linux-azure-6.2-6.2.0/debian.azure/abi/version @@ -1 +1 @@ -6.2.0-1010.10 +6.2.0-1011.11 diff -u linux-azure-6.2-6.2.0/debian.azure/changelog linux-azure-6.2-6.2.0/debian.azure/changelog --- linux-azure-6.2-6.2.0/debian.azure/changelog +++ linux-azure-6.2-6.2.0/debian.azure/changelog @@ -1,3 +1,32 @@ +linux-azure (6.2.0-1012.12) lunar; urgency=medium + + * lunar/linux-azure: 6.2.0-1012.12 -proposed tracker (LP: #2034144) + + [ Ubuntu: 6.2.0-33.33 ] + + * lunar/linux: 6.2.0-33.33 -proposed tracker (LP: #2034158) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * CVE-2023-21264 + - KVM: arm64: Prevent unconditional donation of unmapped regions from the host + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + + -- Tim Gardner Wed, 06 Sep 2023 12:58:11 -0600 + linux-azure (6.2.0-1011.11) lunar; urgency=medium * lunar/linux-azure: 6.2.0-1011.11 -proposed tracker (LP: #2030368) diff -u linux-azure-6.2-6.2.0/debian.azure/tracking-bug linux-azure-6.2-6.2.0/debian.azure/tracking-bug --- linux-azure-6.2-6.2.0/debian.azure/tracking-bug +++ linux-azure-6.2-6.2.0/debian.azure/tracking-bug @@ -1 +1 @@ -2030368 2023.08.07-1 +2034144 s2023.08.07-1 diff -u linux-azure-6.2-6.2.0/debian.master/abi/abiname linux-azure-6.2-6.2.0/debian.master/abi/abiname --- linux-azure-6.2-6.2.0/debian.master/abi/abiname +++ linux-azure-6.2-6.2.0/debian.master/abi/abiname @@ -1 +1 @@ -30 +32 diff -u linux-azure-6.2-6.2.0/debian.master/abi/version linux-azure-6.2-6.2.0/debian.master/abi/version --- linux-azure-6.2-6.2.0/debian.master/abi/version +++ linux-azure-6.2-6.2.0/debian.master/abi/version @@ -1 +1 @@ -6.2.0-30.30 +6.2.0-32.32 diff -u linux-azure-6.2-6.2.0/debian.master/changelog linux-azure-6.2-6.2.0/debian.master/changelog --- linux-azure-6.2-6.2.0/debian.master/changelog +++ linux-azure-6.2-6.2.0/debian.master/changelog @@ -1,3 +1,34 @@ +linux (6.2.0-33.33) lunar; urgency=medium + + * lunar/linux: 6.2.0-33.33 -proposed tracker (LP: #2034158) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * CVE-2023-21264 + - KVM: arm64: Prevent unconditional donation of unmapped regions from the host + + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + + -- Thadeu Lima de Souza Cascardo Tue, 05 Sep 2023 09:47:04 -0300 + linux (6.2.0-32.32) lunar; urgency=medium * lunar/linux: 6.2.0-32.32 -proposed tracker (LP: #2031134) diff -u linux-azure-6.2-6.2.0/debian.master/tracking-bug linux-azure-6.2-6.2.0/debian.master/tracking-bug --- linux-azure-6.2-6.2.0/debian.master/tracking-bug +++ linux-azure-6.2-6.2.0/debian.master/tracking-bug @@ -1 +1 @@ -2031134 2023.08.07-3 +2034158 s2023.08.07-1 diff -u linux-azure-6.2-6.2.0/debian/changelog linux-azure-6.2-6.2.0/debian/changelog --- linux-azure-6.2-6.2.0/debian/changelog +++ linux-azure-6.2-6.2.0/debian/changelog @@ -1,3 +1,34 @@ +linux-azure-6.2 (6.2.0-1012.12~22.04.1) jammy; urgency=medium + + * jammy/linux-azure-6.2: 6.2.0-1012.12~22.04.1 -proposed tracker + (LP: #2034143) + + [ Ubuntu: 6.2.0-1012.12 ] + + * lunar/linux-azure: 6.2.0-1012.12 -proposed tracker (LP: #2034144) + * lunar/linux: 6.2.0-33.33 -proposed tracker (LP: #2034158) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * CVE-2023-21264 + - KVM: arm64: Prevent unconditional donation of unmapped regions from the host + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + + -- Tim Gardner Thu, 07 Sep 2023 07:15:22 -0600 + linux-azure-6.2 (6.2.0-1011.11~22.04.1) jammy; urgency=medium * jammy/linux-azure-6.2: 6.2.0-1011.11~22.04.1 -proposed tracker diff -u linux-azure-6.2-6.2.0/debian/control linux-azure-6.2-6.2.0/debian/control --- linux-azure-6.2-6.2.0/debian/control +++ linux-azure-6.2-6.2.0/debian/control @@ -61,7 +61,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-azure-6.2-headers-6.2.0-1011 +Package: linux-azure-6.2-headers-6.2.0-1012 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -71,46 +71,46 @@ Description: Header files related to Linux kernel version 6.2.0 This package provides kernel header files for version 6.2.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-azure-6.2-headers-6.2.0-1011/debian.README.gz for details + /usr/share/doc/linux-azure-6.2-headers-6.2.0-1012/debian.README.gz for details -Package: linux-azure-6.2-tools-6.2.0-1011 +Package: linux-azure-6.2-tools-6.2.0-1012 Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 6.2.0-1011 +Description: Linux kernel version specific tools for version 6.2.0-1012 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.2.0-1011 on + version 6.2.0-1012 on 64 bit x86. - You probably want to install linux-tools-6.2.0-1011-. + You probably want to install linux-tools-6.2.0-1012-. -Package: linux-azure-6.2-cloud-tools-6.2.0-1011 +Package: linux-azure-6.2-cloud-tools-6.2.0-1012 Build-Profiles: 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 6.2.0-1011 +Description: Linux kernel version specific cloud tools for version 6.2.0-1012 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 6.2.0-1011 on + version locked tools for cloud tools for version 6.2.0-1012 on 64 bit x86. - You probably want to install linux-cloud-tools-6.2.0-1011-. + You probably want to install linux-cloud-tools-6.2.0-1012-. -Package: linux-image-unsigned-6.2.0-1011-azure +Package: linux-image-unsigned-6.2.0-1012-azure Build-Profiles: Architecture: amd64 arm64 Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64], ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-1011-azure +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-1012-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-6.2.0-1011-azure -Suggests: fdutils, linux-azure-6.2-doc-6.2.0 | linux-azure-6.2-source-6.2.0, linux-azure-6.2-tools, linux-headers-6.2.0-1011-azure, initramfs-tools | linux-initramfs-tool +Conflicts: linux-image-6.2.0-1012-azure +Suggests: fdutils, linux-azure-6.2-doc-6.2.0 | linux-azure-6.2-source-6.2.0, linux-azure-6.2-tools, linux-headers-6.2.0-1012-azure, initramfs-tools | linux-initramfs-tool Description: Linux kernel image for version 6.2.0 on 64 bit x86 SMP This package contains the unsigned Linux kernel image for version 6.2.0 on 64 bit x86 SMP. @@ -123,7 +123,7 @@ the linux-azure meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-6.2.0-1011-azure +Package: linux-modules-6.2.0-1012-azure Build-Profiles: Architecture: amd64 arm64 Section: kernel @@ -143,12 +143,12 @@ the linux-azure meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-6.2.0-1011-azure +Package: linux-modules-extra-6.2.0-1012-azure Build-Profiles: Architecture: amd64 arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, wireless-regdb, linux-modules-6.2.0-1011-azure +Depends: ${misc:Depends}, ${shlibs:Depends}, wireless-regdb, linux-modules-6.2.0-1012-azure Description: Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP. @@ -165,21 +165,21 @@ the linux-azure meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-6.2.0-1011-azure +Package: linux-headers-6.2.0-1012-azure Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-azure-6.2-headers-6.2.0-1011, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-azure-6.2-headers-6.2.0-1012, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 6.2.0 on 64 bit x86 SMP This package provides kernel header files for version 6.2.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-6.2.0-1011/debian.README.gz for details. + /usr/share/doc/linux-headers-6.2.0-1012/debian.README.gz for details. -Package: linux-azure-6.2-lib-rust-6.2.0-1011-azure +Package: linux-azure-6.2-lib-rust-6.2.0-1012-azure Build-Profiles: Architecture: amd64 Multi-Arch: foreign @@ -190,7 +190,7 @@ This package provides kernel library files for version 6.2.0, that allow to compile out-of-tree kernel modules written in Rust. -Package: linux-image-unsigned-6.2.0-1011-azure-dbgsym +Package: linux-image-unsigned-6.2.0-1012-azure-dbgsym Build-Profiles: Architecture: amd64 arm64 Section: devel @@ -207,27 +207,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-6.2.0-1011-azure +Package: linux-tools-6.2.0-1012-azure Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-azure-6.2-tools-6.2.0-1011 -Description: Linux kernel version specific tools for version 6.2.0-1011 +Depends: ${misc:Depends}, linux-azure-6.2-tools-6.2.0-1012 +Description: Linux kernel version specific tools for version 6.2.0-1012 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.2.0-1011 on + version 6.2.0-1012 on 64 bit x86. -Package: linux-cloud-tools-6.2.0-1011-azure +Package: linux-cloud-tools-6.2.0-1012-azure Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-azure-6.2-cloud-tools-6.2.0-1011 -Description: Linux kernel version specific cloud tools for version 6.2.0-1011 +Depends: ${misc:Depends}, linux-azure-6.2-cloud-tools-6.2.0-1012 +Description: Linux kernel version specific cloud tools for version 6.2.0-1012 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 6.2.0-1011 on + version locked tools for cloud for version 6.2.0-1012 on 64 bit x86. Package: linux-udebs-azure @@ -241,7 +241,7 @@ for easier version and migration tracking. -Package: linux-buildinfo-6.2.0-1011-azure +Package: linux-buildinfo-6.2.0-1012-azure Build-Profiles: Architecture: amd64 arm64 Section: kernel diff -u linux-azure-6.2-6.2.0/debian/scripts/helpers/open linux-azure-6.2-6.2.0/debian/scripts/helpers/open --- linux-azure-6.2-6.2.0/debian/scripts/helpers/open +++ linux-azure-6.2-6.2.0/debian/scripts/helpers/open @@ -192,8 +192,8 @@ if [ -f "$DEBIAN/abi/version" ]; then # This is an unversioned ABI directory, so simply update the # version file - echo "$new" > "$DEBIAN/abi/version" - git add "$DEBIAN/abi/version" + echo "$new" | run tee "$DEBIAN/abi/version" >/dev/null + run git add "$DEBIAN/abi/version" else # Get the old ABI directory: old=$(find "$DEBIAN/abi/" -mindepth 1 -maxdepth 1 -type d | \ diff -u linux-azure-6.2-6.2.0/net/bluetooth/l2cap_sock.c linux-azure-6.2-6.2.0/net/bluetooth/l2cap_sock.c --- linux-azure-6.2-6.2.0/net/bluetooth/l2cap_sock.c +++ linux-azure-6.2-6.2.0/net/bluetooth/l2cap_sock.c @@ -46,6 +46,7 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent); static struct sock *l2cap_sock_alloc(struct net *net, struct socket *sock, int proto, gfp_t prio, int kern); +static void l2cap_sock_cleanup_listen(struct sock *parent); bool l2cap_is_socket(struct socket *sock) { @@ -1415,6 +1416,7 @@ if (!sk) return 0; + l2cap_sock_cleanup_listen(sk); bt_sock_unlink(&l2cap_sk_list, sk); err = l2cap_sock_shutdown(sock, SHUT_RDWR); diff -u linux-azure-6.2-6.2.0/net/netfilter/nf_tables_api.c linux-azure-6.2-6.2.0/net/netfilter/nf_tables_api.c --- linux-azure-6.2-6.2.0/net/netfilter/nf_tables_api.c +++ linux-azure-6.2-6.2.0/net/netfilter/nf_tables_api.c @@ -6776,6 +6776,7 @@ ret = __nft_set_catchall_flush(ctx, set, &elem); if (ret < 0) break; + nft_set_elem_change_active(ctx->net, set, ext); } return ret; diff -u linux-azure-6.2-6.2.0/net/sched/cls_fw.c linux-azure-6.2-6.2.0/net/sched/cls_fw.c --- linux-azure-6.2-6.2.0/net/sched/cls_fw.c +++ linux-azure-6.2-6.2.0/net/sched/cls_fw.c @@ -267,7 +267,6 @@ return -ENOBUFS; fnew->id = f->id; - fnew->res = f->res; fnew->ifindex = f->ifindex; fnew->tp = f->tp; diff -u linux-azure-6.2-6.2.0/net/sched/cls_u32.c linux-azure-6.2-6.2.0/net/sched/cls_u32.c --- linux-azure-6.2-6.2.0/net/sched/cls_u32.c +++ linux-azure-6.2-6.2.0/net/sched/cls_u32.c @@ -815,7 +815,6 @@ new->ifindex = n->ifindex; new->fshift = n->fshift; - new->res = n->res; new->flags = n->flags; RCU_INIT_POINTER(new->ht_down, ht); only in patch2: unchanged: --- linux-azure-6.2-6.2.0.orig/arch/arm64/kvm/hyp/nvhe/mem_protect.c +++ linux-azure-6.2-6.2.0/arch/arm64/kvm/hyp/nvhe/mem_protect.c @@ -568,7 +568,7 @@ struct check_walk_data { enum pkvm_page_state desired; - enum pkvm_page_state (*get_page_state)(kvm_pte_t pte); + enum pkvm_page_state (*get_page_state)(kvm_pte_t pte, u64 addr); }; static int __check_page_state_visitor(const struct kvm_pgtable_visit_ctx *ctx, @@ -576,10 +576,7 @@ { struct check_walk_data *d = ctx->arg; - if (kvm_pte_valid(ctx->old) && !addr_is_allowed_memory(kvm_pte_to_phys(ctx->old))) - return -EINVAL; - - return d->get_page_state(ctx->old) == d->desired ? 0 : -EPERM; + return d->get_page_state(ctx->old, ctx->addr) == d->desired ? 0 : -EPERM; } static int check_page_state_range(struct kvm_pgtable *pgt, u64 addr, u64 size, @@ -594,8 +591,11 @@ return kvm_pgtable_walk(pgt, addr, size, &walker); } -static enum pkvm_page_state host_get_page_state(kvm_pte_t pte) +static enum pkvm_page_state host_get_page_state(kvm_pte_t pte, u64 addr) { + if (!addr_is_allowed_memory(addr)) + return PKVM_NOPAGE; + if (!kvm_pte_valid(pte) && pte) return PKVM_NOPAGE; @@ -702,7 +702,7 @@ return host_stage2_set_owner_locked(addr, size, host_id); } -static enum pkvm_page_state hyp_get_page_state(kvm_pte_t pte) +static enum pkvm_page_state hyp_get_page_state(kvm_pte_t pte, u64 addr) { if (!kvm_pte_valid(pte)) return PKVM_NOPAGE; only in patch2: unchanged: --- linux-azure-6.2-6.2.0.orig/arch/x86/include/asm/entry-common.h +++ linux-azure-6.2-6.2.0/arch/x86/include/asm/entry-common.h @@ -92,6 +92,7 @@ static __always_inline void arch_exit_to_user_mode(void) { mds_user_clear_cpu_buffers(); + amd_clear_divider(); } #define arch_exit_to_user_mode arch_exit_to_user_mode only in patch2: unchanged: --- linux-azure-6.2-6.2.0.orig/net/sched/cls_route.c +++ linux-azure-6.2-6.2.0/net/sched/cls_route.c @@ -513,7 +513,6 @@ if (fold) { f->id = fold->id; f->iif = fold->iif; - f->res = fold->res; f->handle = fold->handle; f->tp = fold->tp; only in patch2: unchanged: --- linux-azure-6.2-6.2.0.orig/tools/arch/x86/include/asm/cpufeatures.h +++ linux-azure-6.2-6.2.0/tools/arch/x86/include/asm/cpufeatures.h @@ -14,7 +14,7 @@ * Defines x86 CPU feature bits */ #define NCAPINTS 20 /* N 32-bit words worth of info */ -#define NBUGINTS 1 /* N 32-bit bug flags */ +#define NBUGINTS 2 /* N 32-bit bug flags */ /* * Note: If the comment begins with a quoted string, that string is used