linux-zen-desktop/drivers/vdpa/vdpa.mod.c

97 lines
2.9 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
SYMBOL_CRC(vdpa_set_status, 0x60394ba2, "");
SYMBOL_CRC(__vdpa_alloc_device, 0x93fb5838, "_gpl");
SYMBOL_CRC(_vdpa_register_device, 0xe2effc62, "_gpl");
SYMBOL_CRC(vdpa_register_device, 0xa8c0bfc3, "_gpl");
SYMBOL_CRC(_vdpa_unregister_device, 0x7202c824, "_gpl");
SYMBOL_CRC(vdpa_unregister_device, 0x832ee910, "_gpl");
SYMBOL_CRC(__vdpa_register_driver, 0x1ccab894, "_gpl");
SYMBOL_CRC(vdpa_unregister_driver, 0x2a6e6598, "_gpl");
SYMBOL_CRC(vdpa_mgmtdev_register, 0x2c273f81, "_gpl");
SYMBOL_CRC(vdpa_mgmtdev_unregister, 0x8d9665ba, "_gpl");
SYMBOL_CRC(vdpa_get_config, 0x108e0016, "_gpl");
SYMBOL_CRC(vdpa_set_config, 0x2852761c, "_gpl");
static const struct modversion_info ____versions[]
__used __section("__versions") = {
{ 0x656e4a6e, "snprintf" },
{ 0x3213f038, "mutex_unlock" },
{ 0xe3934137, "bus_find_device" },
{ 0x1afa8a5a, "device_add" },
{ 0xb5686f70, "put_device" },
{ 0x5c8809da, "device_unregister" },
{ 0xcd9c1c57, "driver_register" },
{ 0xca64e135, "driver_unregister" },
{ 0x1e155b0e, "bus_for_each_dev" },
{ 0x668b19a1, "down_read" },
{ 0x53b954a2, "up_read" },
{ 0xe6d2458e, "do_trace_netlink_extack" },
{ 0x504ed323, "genl_unregister_family" },
{ 0x203fdea3, "bus_unregister" },
{ 0xa7d5f92e, "ida_destroy" },
{ 0x162fe787, "bus_register" },
{ 0x4ecb95ec, "genl_register_family" },
{ 0x15b6efa7, "dma_set_mask" },
{ 0x108e19cb, "dma_set_coherent_mask" },
{ 0xeb233a45, "__kmalloc" },
{ 0xe7a02573, "ida_alloc_range" },
{ 0x1303a5af, "dev_set_name" },
{ 0x7b4da6ff, "__init_rwsem" },
{ 0xd3278c09, "device_initialize" },
{ 0xf1db1704, "nla_memcpy" },
{ 0xa1f24cd, "netlink_capable" },
{ 0xa19b956, "__stack_chk_fail" },
{ 0xf7d305bf, "genlmsg_put" },
{ 0x754d539c, "strlen" },
{ 0xf3e27e30, "nla_put" },
{ 0x368a0869, "nla_put_64bit" },
{ 0x6b5a3be2, "skb_trim" },
{ 0x231bf2c5, "__alloc_skb" },
{ 0x79b44e98, "kfree_skb_reason" },
{ 0x38abaa27, "netlink_unicast" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0x65487097, "__x86_indirect_thunk_rax" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0x6383b27c, "__x86_indirect_thunk_rdx" },
{ 0x57bc19d2, "down_write" },
{ 0xce807a25, "up_write" },
{ 0xffb7c514, "ida_free" },
{ 0x37a0cba, "kfree" },
{ 0xe2d5255a, "strcmp" },
{ 0x25a7d0fd, "driver_set_override" },
{ 0x4dfa8d4b, "mutex_lock" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "");