加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mc_fs_mod.mod.c 852 Bytes
一键复制 编辑 原始数据 按行查看 历史
智慧工厂@M 提交于 2021-10-21 16:16 . init
#include <linux/build-salt.h>
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
BUILD_SALT;
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,
};
#ifdef CONFIG_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif
static const struct modversion_info ____versions[]
__used __section(__versions) = {
{ 0xa4b86400, "module_layout" },
{ 0x6bc3fbc0, "__unregister_chrdev" },
{ 0x541fd03b, "__register_chrdev" },
{ 0xb44ad4b3, "_copy_to_user" },
{ 0xc5850110, "printk" },
{ 0xbdfb6dbb, "__fentry__" },
};
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "5FDE00A40076C231EC18272");
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化