为什么文件系统需要目录结构?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在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.
乔斯确实使用目录条目。它只是使用 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)