为什么文件系统需要目录结构?

发布于 2024-12-11 10:10:16 字数 98 浏览 0 评论 0原文

MIT OS 课程的 Jos 仅使用 File 结构来描述常规文件或目录。 但linux内核使用dentry/inode/file结构来描述文件。 文件系统有必要使用dentry吗?

Jos of MIT OS lesson only uses File structure to describe regular file or dir.
But linux kernel uses dentry/inode/file structure to describe files.
Is it neccessary to use dentry for file system?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷…雨湿花 2024-12-18 10:10:16

在Linux中,dentry是一个将inode和文件对象关联起来的目录项,但它不一定只是一个目录,可以代表一个文件。 Dentry 启用硬链接,允许为同一文件创建多个硬链接。因此您可以为同一个文件创建多个名称。

Dentry 缓存对于文件系统的性能也很重要。下图来自《Understanding the Linux Kernel, 3rd Edition》,展示了进程和VFS对象之间的交互。

在此处输入图像描述

In Linux, dentry is a directory entry that associates inode and file object, but it is not necessary just a directory, could represent a file. Dentry enables the hard link which allows allow multiple hard links to be created for the same file. So you can create multiple names for the same file.

Dentry cache also does matter for performance of File system. The following picture is from "Understanding the Linux Kernel, 3rd Edition" which shows interactions between processes and VFS objects.

enter image description here

半﹌身腐败 2024-12-18 10:10:16

乔斯确实使用目录条目。它只是使用 File 对象来存储目录(它们使用相同的对象来存储目录数据和文件数据)

Jos does use directory entries. It just uses the File object to store directories (they use teh same object for storing directory data and file data)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文