linux-zen-desktop/net/smc/smc_diag.mod.c

58 lines
1.4 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") = {
{ 0xe96c29a2, "__netlink_dump_start" },
{ 0xa885a4af, "sock_diag_unregister" },
{ 0x1cfba015, "stackleak_track_stack" },
{ 0x639c1b92, "__nlmsg_put" },
{ 0xde2d5d82, "sock_diag_save_cookie" },
{ 0xf3e27e30, "nla_put" },
{ 0x6b5a3be2, "skb_trim" },
{ 0x669c2cea, "sock_i_uid" },
{ 0x553c929f, "from_kuid_munged" },
{ 0xc63c2b2e, "sock_i_ino" },
{ 0x3c3ff9fd, "sprintf" },
{ 0x65487097, "__x86_indirect_thunk_rax" },
{ 0xfe8c61f0, "_raw_read_lock" },
{ 0xdd4d55b6, "_raw_read_unlock" },
{ 0xb1a37ebd, "smc_proto" },
{ 0x409516dd, "smc_proto6" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0x47dbab88, "sock_diag_register" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "smc");