#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(nlmclnt_init, "_gpl", ""); KSYMTAB_FUNC(nlmclnt_done, "_gpl", ""); KSYMTAB_FUNC(nlmclnt_rpc_clnt, "_gpl", ""); KSYMTAB_FUNC(nlmclnt_proc, "_gpl", ""); KSYMTAB_DATA(nlmsvc_ops, "_gpl", ""); KSYMTAB_FUNC(lockd_up, "_gpl", ""); KSYMTAB_FUNC(lockd_down, "_gpl", ""); KSYMTAB_FUNC(nlmsvc_unlock_all_by_sb, "_gpl", ""); KSYMTAB_FUNC(nlmsvc_unlock_all_by_ip, "_gpl", ""); MODULE_INFO(depends, "sunrpc,grace"); MODULE_INFO(srcversion, "148D40D7864095E7D1A9D4E");