linux-zen-desktop/drivers/virtio/virtio_vdpa.mod.c

72 lines
2.0 KiB
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
#include <linux/module.h>
#define INCLUDE_VERMAGIC
#include <linux/build-salt.h>
#include <linux/elfnote-lto.h>
#include <linux/export-internal.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
BUILD_SALT;
BUILD_LTO_INFO;
MODULE_INFO(vermagic, VERMAGIC_STRING);
MODULE_INFO(name, KBUILD_MODNAME);
__visible struct module __this_module
__section(".gnu.linkonce.this_module") = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
.exit = cleanup_module,
#endif
.arch = MODULE_ARCH_INIT,
};
MODULE_INFO(intree, "Y");
#ifdef CONFIG_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif
static const struct modversion_info ____versions[]
__used __section("__versions") = {
{ 0x2a6e6598, "vdpa_unregister_driver" },
{ 0x1cfba015, "stackleak_track_stack" },
{ 0x34db050b, "_raw_spin_lock_irqsave" },
{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
{ 0x860ee7d9, "vring_del_virtqueue" },
{ 0x5b94ad75, "kmalloc_caches" },
{ 0xac4a1f46, "kmalloc_trace" },
{ 0xa6dc7dd7, "vring_create_virtqueue_dma" },
{ 0xae2fa9a1, "virtqueue_get_vring_size" },
{ 0x362f9a8, "__x86_indirect_thunk_r12" },
{ 0x7b25ecb8, "virtqueue_get_desc_addr" },
{ 0x208258f8, "virtqueue_get_avail_addr" },
{ 0x327d519e, "virtqueue_get_used_addr" },
{ 0xe0112fc4, "__x86_indirect_thunk_r9" },
{ 0xcac73be9, "register_virtio_device" },
{ 0xb5686f70, "put_device" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0x65487097, "__x86_indirect_thunk_rax" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0x6383b27c, "__x86_indirect_thunk_rdx" },
{ 0x1ccab894, "__vdpa_register_driver" },
{ 0xe62f1c66, "unregister_virtio_device" },
{ 0x37a0cba, "kfree" },
{ 0xfeefa299, "vring_transport_features" },
{ 0x57bc19d2, "down_write" },
{ 0xce807a25, "up_write" },
{ 0x60394ba2, "vdpa_set_status" },
{ 0x2852761c, "vdpa_set_config" },
{ 0xedbbf01b, "virtio_config_changed" },
{ 0xff05fa13, "vring_interrupt" },
{ 0x108e0016, "vdpa_get_config" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "vdpa");
MODULE_INFO(srcversion, "24CCB09B2057769D350C56E");