86 lines
2.5 KiB
C
86 lines
2.5 KiB
C
|
#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") = {
|
||
|
{ 0x275e7c2, "vp_modern_get_features" },
|
||
|
{ 0xcf8ee05c, "pci_set_master" },
|
||
|
{ 0x2c273f81, "vdpa_mgmtdev_register" },
|
||
|
{ 0x9040242d, "_dev_err" },
|
||
|
{ 0x7ef5f431, "pci_alloc_irq_vectors" },
|
||
|
{ 0x656e4a6e, "snprintf" },
|
||
|
{ 0xc3969aad, "pci_irq_vector" },
|
||
|
{ 0x52b1e45, "devm_request_threaded_irq" },
|
||
|
{ 0x93fb5838, "__vdpa_alloc_device" },
|
||
|
{ 0xa7e58877, "devm_add_action" },
|
||
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
||
|
{ 0x163e7151, "vp_modern_map_vq_notify" },
|
||
|
{ 0xb024ade4, "_dev_warn" },
|
||
|
{ 0xb5686f70, "put_device" },
|
||
|
{ 0xe2effc62, "_vdpa_register_device" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
||
|
{ 0xc9c41e74, "__pci_register_driver" },
|
||
|
{ 0x8d9665ba, "vdpa_mgmtdev_unregister" },
|
||
|
{ 0x87a10ffb, "vp_modern_remove" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0x6f2ea6ab, "pci_free_irq_vectors" },
|
||
|
{ 0x584faf12, "vp_modern_get_queue_enable" },
|
||
|
{ 0xa20a68d1, "vp_modern_generation" },
|
||
|
{ 0xab29df47, "vp_modern_get_status" },
|
||
|
{ 0x848d372e, "iowrite8" },
|
||
|
{ 0xb19b445, "ioread8" },
|
||
|
{ 0x6a86bc1, "iowrite16" },
|
||
|
{ 0xe6c2f048, "vp_modern_set_queue_size" },
|
||
|
{ 0xe541d36f, "vp_modern_set_features" },
|
||
|
{ 0x287e6345, "vp_modern_queue_vector" },
|
||
|
{ 0x45b24304, "devm_free_irq" },
|
||
|
{ 0x8cc440e6, "vp_modern_config_vector" },
|
||
|
{ 0x33f4bac9, "vp_modern_set_status" },
|
||
|
{ 0x17936c99, "vp_modern_queue_address" },
|
||
|
{ 0xcdcf3426, "vp_modern_get_driver_features" },
|
||
|
{ 0xbae8e69e, "vp_modern_set_queue_enable" },
|
||
|
{ 0x7202c824, "_vdpa_unregister_device" },
|
||
|
{ 0x8410b88b, "pci_unregister_driver" },
|
||
|
{ 0x5b94ad75, "kmalloc_caches" },
|
||
|
{ 0xac4a1f46, "kmalloc_trace" },
|
||
|
{ 0x59173, "pcim_enable_device" },
|
||
|
{ 0x38ef9176, "vp_modern_probe" },
|
||
|
{ 0x38c0a48f, "vp_modern_get_num_queues" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "vdpa");
|
||
|
|
||
|
|
||
|
MODULE_INFO(srcversion, "6422BBBA11796393323DB83");
|