提交 4d39b633 创建 作者: rsc's avatar rsc

nits

上级 895c182d
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
// holding cached copies of disk block contents. // holding cached copies of disk block contents.
// Each buf has two state bits B_BUSY and B_VALID. // Each buf has two state bits B_BUSY and B_VALID.
// If B_BUSY is set, it means that some code is currently // If B_BUSY is set, it means that some code is currently
// modifying buf, so other code is not allowed to look at it. // using buf, so other code is not allowed to use it.
// To wait for a buffer that is B_BUSY, sleep on buf. // To wait for a buffer that is B_BUSY, sleep on buf.
// (See bget below.) // (See bget below.)
// //
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
// + Directories: inode with special contents (list of other inodes!) // + Directories: inode with special contents (list of other inodes!)
// + Names: paths like /usr/rtm/xv6/fs.c for convenient naming. // + Names: paths like /usr/rtm/xv6/fs.c for convenient naming.
// //
// Disk layout is: superblock, inodes, block not-free bitmap, data blocks. // Disk layout is: superblock, inodes, block in-use bitmap, data blocks.
// //
// This file contains the low-level file system manipulation // This file contains the low-level file system manipulation
// routines. The (higher-level) system call implementations // routines. The (higher-level) system call implementations
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论