⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vfatfs_syms.c

📁 《嵌入式系统设计与实例开发实验教材二源码》Linux内核移植与编译实验
💻 C
字号:
/* * linux/fs/msdos/vfatfs_syms.c * * Exported kernel symbols for the VFAT filesystem. * These symbols are used by dmsdos. */#include <linux/module.h>#include <linux/init.h>#include <linux/mm.h>#include <linux/msdos_fs.h>DECLARE_FSTYPE_DEV(vfat_fs_type, "vfat", vfat_read_super);EXPORT_SYMBOL(vfat_create);EXPORT_SYMBOL(vfat_unlink);EXPORT_SYMBOL(vfat_mkdir);EXPORT_SYMBOL(vfat_rmdir);EXPORT_SYMBOL(vfat_rename);EXPORT_SYMBOL(vfat_read_super);EXPORT_SYMBOL(vfat_lookup);static int __init init_vfat_fs(void){	return register_filesystem(&vfat_fs_type);}static void __exit exit_vfat_fs(void){	unregister_filesystem(&vfat_fs_type);}module_init(init_vfat_fs)module_exit(exit_vfat_fs)MODULE_LICENSE("GPL");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -