75 lines
2.3 KiB
C
75 lines
2.3 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>
|
|
|
|
#ifdef CONFIG_UNWINDER_ORC
|
|
#include <asm/orc_header.h>
|
|
ORC_HEADER;
|
|
#endif
|
|
|
|
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
|
|
|
|
KSYMTAB_DATA(vsock_bind_table, "_gpl", "");
|
|
KSYMTAB_DATA(vsock_connected_table, "_gpl", "");
|
|
KSYMTAB_DATA(vsock_table_lock, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_insert_connected, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_remove_bound, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_remove_connected, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_find_bound_socket, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_find_connected_socket, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_remove_sock, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_for_each_connected_socket, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_add_pending, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_remove_pending, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_enqueue_accept, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_assign_transport, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_find_cid, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_create_connected, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_stream_has_data, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_connectible_has_data, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_stream_has_space, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_data_ready, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_dgram_recvmsg, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_connectible_recvmsg, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_core_get_transport, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_core_register, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_core_unregister, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_add_tap, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_remove_tap, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_deliver_tap, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_addr_init, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_addr_validate, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_addr_bound, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_addr_unbind, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_addr_equals_addr, "_gpl", "");
|
|
KSYMTAB_FUNC(vsock_addr_cast, "_gpl", "");
|
|
|
|
MODULE_INFO(depends, "");
|
|
|
|
|
|
MODULE_INFO(srcversion, "D2D67DF4ADE78159330BFFD");
|