#include #include #include 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"); KSYMTAB_FUNC(sctp_get_sctp_info, "_gpl", ""); KSYMTAB_FUNC(sctp_for_each_endpoint, "_gpl", ""); KSYMTAB_FUNC(sctp_transport_lookup_process, "_gpl", ""); KSYMTAB_FUNC(sctp_transport_traverse_process, "_gpl", ""); KSYMTAB_FUNC(sctp_do_peeloff, "", ""); MODULE_INFO(depends, "udp_tunnel,ip6_udp_tunnel,libcrc32c"); MODULE_INFO(srcversion, "C2537E6597E5C5A441519AA");