Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • P proj5-FAT32onMaQueOS
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • CrewUnionProblemKill
  • proj5-FAT32onMaQueOS
  • Wiki
  • 比赛题目分析和相关资料调研

比赛题目分析和相关资料调研 · Changes

Page history
Update 比赛题目分析和相关资料调研,修改h1标题:Linux 对 FAT32 支持的实现 为 Linux 对文件系统的支持的实现,并添加内容 authored Jun 14, 2024 by Little Leaf's avatar Little Leaf
Hide whitespace changes
Inline Side-by-side
比赛题目分析和相关资料调研.md
View page @ ca64767e
......@@ -23,4 +23,47 @@
综上所述,我们计划修改上面提到的总共 `9` 个系统调用来使MaQueOS支持FAT32。
# Linux 对 FAT32 支持的实现
# Linux 对文件系统的支持的实现
```
+--------------------+
| User Space |
|--------------------|
| mount("/dev/sdb1",|
| "/mnt/myusb", |
| "vfat", ...) |
+---------+----------+
|
v
+--------------------+
| Kernel Space |
|--------------------|
| sys_mount() | <---- System Call Interface
| | |
| v |
| Verify Params |
| | |
| v |
| Find FS Driver |
| | |
| v |
| Call vfat_fill_ |
| super() | <---- File System Driver
+---------+----------+
|
v
+--------------------+
| vfat_fill_super() |
|--------------------|
| Init Superblock |
| Read FS Structure |
| Set FS Operations |
+---------+----------+
|
v
+--------------------+
| VFS Integration |
| (Update Mount |
| Table, etc.) |
+--------------------+
```
\ No newline at end of file
Clone repository
  • Home
  • uploads
    • 0bc768dbb7fc0582616552f906240a99
      • Readme
  • 云端开发环境
  • 文档规范
  • 比赛题目分析和相关资料调研
  • 系统测试
  • 系统调用文档
    • sys_create函数
    • sys_destroy 函数介绍
      • find_directory_entry 函数介绍
        • read_custor 函数介绍
    • sys_mount 函数介绍