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") = {
|
|
{ 0x4db7c870, "debugfs_create_dir" },
|
|
{ 0xfedf6463, "debugfs_remove" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x2b7855a1, "ntb_clear_ctx" },
|
|
{ 0xda5258f2, "hrtimer_cancel" },
|
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
|
{ 0x4d6757b6, "ntb_unregister_client" },
|
|
{ 0x6383b27c, "__x86_indirect_thunk_rdx" },
|
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
|
{ 0xf53d8d04, "hrtimer_init" },
|
|
{ 0xc221e901, "ntb_default_peer_port_number" },
|
|
{ 0x5ed550a5, "ntb_set_ctx" },
|
|
{ 0xe0173e24, "ntb_link_event" },
|
|
{ 0x5f90ac73, "debugfs_create_atomic_t" },
|
|
{ 0x9040242d, "_dev_err" },
|
|
{ 0xc20db65, "ntb_default_peer_port_count" },
|
|
{ 0x39ac22a8, "ntb_default_port_number" },
|
|
{ 0xba8fbd64, "_raw_spin_lock" },
|
|
{ 0xb5b54b34, "_raw_spin_unlock" },
|
|
{ 0x2ceb64a, "hrtimer_start_range_ns" },
|
|
{ 0xf90a1e85, "__x86_indirect_thunk_r8" },
|
|
{ 0x66cca4f9, "__x86_indirect_thunk_rcx" },
|
|
{ 0x1ddc4586, "param_ops_uint" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x716265c7, "debugfs_initialized" },
|
|
{ 0xbae183e4, "__ntb_register_client" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "ntb");
|
|
|
|
|
|
MODULE_INFO(srcversion, "8E61D69C1F94C0C31082466");
|