90 lines
2.6 KiB
C
90 lines
2.6 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") = {
|
||
|
{ 0xedc03953, "iounmap" },
|
||
|
{ 0x1cfba015, "stackleak_track_stack" },
|
||
|
{ 0xfd93ee35, "ioremap_wc" },
|
||
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
||
|
{ 0xd9a5ea54, "__init_waitqueue_head" },
|
||
|
{ 0x6383b27c, "__x86_indirect_thunk_rdx" },
|
||
|
{ 0x5ed550a5, "ntb_set_ctx" },
|
||
|
{ 0xc20db65, "ntb_default_peer_port_count" },
|
||
|
{ 0x2b7855a1, "ntb_clear_ctx" },
|
||
|
{ 0xad1d1bd2, "simple_open" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x716265c7, "debugfs_initialized" },
|
||
|
{ 0xbae183e4, "__ntb_register_client" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x4db7c870, "debugfs_create_dir" },
|
||
|
{ 0xfedf6463, "debugfs_remove" },
|
||
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
||
|
{ 0xe2964344, "__wake_up" },
|
||
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
||
|
{ 0x47cfd825, "kstrtouint_from_user" },
|
||
|
{ 0x66cca4f9, "__x86_indirect_thunk_rcx" },
|
||
|
{ 0x96848186, "scnprintf" },
|
||
|
{ 0x619cb7dd, "simple_read_from_buffer" },
|
||
|
{ 0xa19b956, "__stack_chk_fail" },
|
||
|
{ 0xeb233a45, "__kmalloc" },
|
||
|
{ 0x7d628444, "memcpy_fromio" },
|
||
|
{ 0x88db9f48, "__check_object_size" },
|
||
|
{ 0x6b10bee1, "_copy_to_user" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0x13c49cc2, "_copy_from_user" },
|
||
|
{ 0xb9e7429c, "memcpy_toio" },
|
||
|
{ 0xbb4f4766, "simple_write_to_buffer" },
|
||
|
{ 0x248efd3, "kstrtobool_from_user" },
|
||
|
{ 0xe2c17b5d, "__SCT__might_resched" },
|
||
|
{ 0xfe487975, "init_wait_entry" },
|
||
|
{ 0x1000e51, "schedule" },
|
||
|
{ 0x8c26d495, "prepare_to_wait_event" },
|
||
|
{ 0x92540fbf, "finish_wait" },
|
||
|
{ 0x7d74d522, "kstrtoull_from_user" },
|
||
|
{ 0x39ac22a8, "ntb_default_port_number" },
|
||
|
{ 0x4d6757b6, "ntb_unregister_client" },
|
||
|
{ 0xbcab6ee6, "sscanf" },
|
||
|
{ 0x55385e2e, "__x86_indirect_thunk_r14" },
|
||
|
{ 0x4c236f6f, "__x86_indirect_thunk_r15" },
|
||
|
{ 0xefb2a051, "dma_free_attrs" },
|
||
|
{ 0x384f1975, "dma_alloc_attrs" },
|
||
|
{ 0x656e4a6e, "snprintf" },
|
||
|
{ 0x7f192ea, "debugfs_create_file" },
|
||
|
{ 0xc221e901, "ntb_default_peer_port_number" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "ntb");
|
||
|
|
||
|
|
||
|
MODULE_INFO(srcversion, "E2B804281E2B7B4D0E2A243");
|