login 45b8371173
新增VFS文档,以及修改文档配置 (#209)
* 1.新增vfs设计文档
2.修改文档版权标志为"2022-2023, DragonOS Community"
3.修改电脑版文档页面的宽度为90%

* layout.html末尾加空行
2023-03-25 14:51:16 +08:00

24 lines
693 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抽象
- 提供文件系统的缓存、同步机制(尚未实现)
.. toctree::
:maxdepth: 1
:caption: 目录
design
api