msdosfs_syms.c
来自「基于组件方式开发操作系统的OSKIT源代码」· C语言 代码 · 共 41 行
C
41 行
/* * linux/fs/msdos/msdosfs_syms.c * * Exported kernel symbols for the MS-DOS filesystem. * These symbols are used by umsdos. */#include <linux/module.h>#include <linux/mm.h>#include <linux/msdos_fs.h>#include <linux/init.h>/* * Support for umsdos fs * * These symbols are _always_ exported, in case someone * wants to install the umsdos module later. */EXPORT_SYMBOL(msdos_create);EXPORT_SYMBOL(msdos_lookup);EXPORT_SYMBOL(msdos_mkdir);EXPORT_SYMBOL(msdos_rename);EXPORT_SYMBOL(msdos_rmdir);EXPORT_SYMBOL(msdos_unlink);EXPORT_SYMBOL(msdos_read_super);EXPORT_SYMBOL(msdos_put_super);struct file_system_type msdos_fs_type = { "msdos", FS_REQUIRES_DEV, msdos_read_super, NULL};__initfunc(int init_msdos_fs(void)){ return register_filesystem(&msdos_fs_type);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?