summaryrefslogtreecommitdiff
path: root/fs.c
diff options
context:
space:
mode:
authorrsc <rsc>2007-08-24 19:46:19 +0000
committerrsc <rsc>2007-08-24 19:46:19 +0000
commit4d39b63388237f5a30206b9df9999bc9f007b7bf (patch)
tree7761fdd0729d458fbb7a0cfcf08e4d3238381ca7 /fs.c
parent895c182d74d331be10826e80f8247aaae4b195db (diff)
downloadxv6-labs-4d39b63388237f5a30206b9df9999bc9f007b7bf.tar.gz
xv6-labs-4d39b63388237f5a30206b9df9999bc9f007b7bf.tar.bz2
xv6-labs-4d39b63388237f5a30206b9df9999bc9f007b7bf.zip
nits
Diffstat (limited to 'fs.c')
-rw-r--r--fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs.c b/fs.c
index 3b39a42..58893b1 100644
--- a/fs.c
+++ b/fs.c
@@ -6,7 +6,7 @@
// + Directories: inode with special contents (list of other inodes!)
// + 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
// routines. The (higher-level) system call implementations