#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_cache_policy_register, "_gpl", ""); KSYMTAB_FUNC(dm_cache_policy_unregister, "_gpl", ""); KSYMTAB_FUNC(dm_cache_policy_create, "_gpl", ""); KSYMTAB_FUNC(dm_cache_policy_destroy, "_gpl", ""); KSYMTAB_FUNC(dm_cache_policy_get_name, "_gpl", ""); KSYMTAB_FUNC(dm_cache_policy_get_version, "_gpl", ""); KSYMTAB_FUNC(dm_cache_policy_get_hint_size, "_gpl", ""); KSYMTAB_FUNC(btracker_create, "_gpl", ""); KSYMTAB_FUNC(btracker_destroy, "_gpl", ""); KSYMTAB_FUNC(btracker_nr_demotions_queued, "_gpl", ""); KSYMTAB_FUNC(btracker_queue, "_gpl", ""); KSYMTAB_FUNC(btracker_issue, "_gpl", ""); KSYMTAB_FUNC(btracker_complete, "_gpl", ""); KSYMTAB_FUNC(btracker_promotion_already_present, "_gpl", ""); MODULE_INFO(depends, "dm-persistent-data,dm-mod,dm-bio-prison"); MODULE_INFO(srcversion, "14348C05D7D90282C92B148");