85 lines
2.5 KiB
C
85 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") = {
|
|
{ 0xe989f24d, "__netdev_alloc_skb" },
|
|
{ 0xd40e7a02, "ntb_transport_rx_enqueue" },
|
|
{ 0xa1d4d8c4, "__dev_kfree_skb_any" },
|
|
{ 0x1422ccb0, "__dynamic_netdev_dbg" },
|
|
{ 0xa916b694, "strnlen" },
|
|
{ 0xdd64e639, "strscpy" },
|
|
{ 0xcbd4898c, "fortify_panic" },
|
|
{ 0x436098aa, "ntb_transport_link_down" },
|
|
{ 0x5fb21dcf, "consume_skb" },
|
|
{ 0xc37d9036, "ntb_transport_rx_remove" },
|
|
{ 0x82ee90dc, "timer_delete_sync" },
|
|
{ 0x30934216, "ntb_transport_max_size" },
|
|
{ 0x8a7e51de, "netdev_err" },
|
|
{ 0x9c992c8f, "ntb_transport_link_up" },
|
|
{ 0xc6f46339, "init_timer_key" },
|
|
{ 0x69c1b3a8, "netif_carrier_off" },
|
|
{ 0xae6bed12, "alloc_etherdev_mqs" },
|
|
{ 0x41ed3709, "get_random_bytes" },
|
|
{ 0xbfa6eaf0, "dev_addr_mod" },
|
|
{ 0xac3e2345, "ntb_transport_create_queue" },
|
|
{ 0xc61b07dd, "register_netdev" },
|
|
{ 0xa8d1337e, "_dev_info" },
|
|
{ 0x6321283a, "ntb_transport_unregister_client" },
|
|
{ 0x862001f, "ntb_transport_tx_free_entry" },
|
|
{ 0x8baf278a, "netif_tx_wake_queue" },
|
|
{ 0x32537aca, "ntb_transport_link_query" },
|
|
{ 0x733145ac, "netif_carrier_on" },
|
|
{ 0x7f24de73, "jiffies_to_usecs" },
|
|
{ 0x15ba50a6, "jiffies" },
|
|
{ 0xc38c83b8, "mod_timer" },
|
|
{ 0x3d54dbfc, "ntb_transport_tx_enqueue" },
|
|
{ 0x32027b93, "ethtool_op_get_link" },
|
|
{ 0xd4c3b08c, "eth_mac_addr" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0xf55d6313, "ntb_transport_register_client_dev" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x8fc2150d, "ntb_transport_register_client" },
|
|
{ 0xf9eb813f, "ntb_transport_unregister_client_dev" },
|
|
{ 0xb6829de7, "unregister_netdev" },
|
|
{ 0xc270dc24, "ntb_transport_free_queue" },
|
|
{ 0xcfee334, "free_netdev" },
|
|
{ 0xb96c812a, "skb_put" },
|
|
{ 0x5a00e0d7, "eth_type_trans" },
|
|
{ 0xddb38691, "__netif_rx" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "ntb_transport");
|
|
|
|
|
|
MODULE_INFO(srcversion, "12AB7D05B11A12EB633AF22");
|