#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(dm_snap_origin, "", ""); KSYMTAB_FUNC(dm_snap_cow, "", ""); KSYMTAB_FUNC(dm_exception_store_type_register, "", ""); KSYMTAB_FUNC(dm_exception_store_type_unregister, "", ""); KSYMTAB_FUNC(dm_exception_store_create, "", ""); KSYMTAB_FUNC(dm_exception_store_destroy, "", ""); MODULE_INFO(depends, "dm-bufio,dm-mod"); MODULE_INFO(srcversion, "1FFC38D4BB60397858E45B6");