DragonOS/docs/kernel/filesystem/vfs/index.rst

26 lines
807 B
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

VFS虚拟文件系统
====================================
在DragonOS中VFS作为适配器遮住了具体文件系统之间的差异对外提供统一的文件操作接口抽象。
VFS是DragonOS文件系统的核心它提供了一套统一的文件系统接口使得DragonOS可以支持多种不同的文件系统。VFS的主要功能包括
- 提供统一的文件系统接口
- 提供文件系统的挂载和卸载机制MountFS
- 提供文件抽象File
- 提供文件系统的抽象FileSystem
- 提供IndexNode抽象
- 提供文件系统的缓存、同步机制(尚未实现)
- 支持将硬盘设备挂载到文件系统上目前支持EXT4和vfat类型的virtio硬盘
.. toctree::
:maxdepth: 1
:caption: 目录
design
api
mountable_fs