vfatfs_syms.c
来自「基于组件方式开发操作系统的OSKIT源代码」· C语言 代码 · 共 35 行
C
35 行
/* * linux/fs/msdos/vfatfs_syms.c * * Exported kernel symbols for the VFAT filesystem. * These symbols are used by dmsdos. */#define ASC_LINUX_VERSION(V, P, S) (((V) * 65536) + ((P) * 256) + (S))#include <linux/version.h>#include <linux/module.h>#include <linux/mm.h>#include <linux/msdos_fs.h>struct file_system_type vfat_fs_type = { "vfat", FS_REQUIRES_DEV, vfat_read_super, NULL};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);int init_vfat_fs(void){ return register_filesystem(&vfat_fs_type);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?