68 lines
1.8 KiB
C
68 lines
1.8 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") = {
|
|
{ 0x7202c824, "_vdpa_unregister_device" },
|
|
{ 0x8d9665ba, "vdpa_mgmtdev_unregister" },
|
|
{ 0x1cfba015, "stackleak_track_stack" },
|
|
{ 0xdfd5f34d, "vdpasim_create" },
|
|
{ 0xe2effc62, "_vdpa_register_device" },
|
|
{ 0xba8fbd64, "_raw_spin_lock" },
|
|
{ 0xb5b54b34, "_raw_spin_unlock" },
|
|
{ 0x18f3ddc2, "vringh_iov_push_iotlb" },
|
|
{ 0x3684d8af, "vringh_complete_iotlb" },
|
|
{ 0xe9c322a0, "pcpu_hot" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x3c3fce39, "__local_bh_enable_ip" },
|
|
{ 0x61e3831b, "vringh_getdesc_iotlb" },
|
|
{ 0xc46f5fb, "vringh_iov_pull_iotlb" },
|
|
{ 0x5a921311, "strncmp" },
|
|
{ 0xc0bb1581, "vringh_need_notify_iotlb" },
|
|
{ 0x2d3385d3, "system_wq" },
|
|
{ 0xc5b6f236, "queue_work_on" },
|
|
{ 0x37a0cba, "kfree" },
|
|
{ 0xf3e27e30, "nla_put" },
|
|
{ 0x368a0869, "nla_put_64bit" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0xdcab9553, "device_register" },
|
|
{ 0x2c273f81, "vdpa_mgmtdev_register" },
|
|
{ 0xb5686f70, "put_device" },
|
|
{ 0x5c8809da, "device_unregister" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "vdpa,vdpa_sim,vringh");
|
|
|
|
|
|
MODULE_INFO(srcversion, "C18792D0DC6F2A4EAA3A52F");
|