summaryrefslogtreecommitdiff
path: root/fs.h
diff options
context:
space:
mode:
authorrsc <rsc>2006-09-08 13:55:43 +0000
committerrsc <rsc>2006-09-08 13:55:43 +0000
commitd911d83ca1ff002f170f2c77975c1a6d705856a6 (patch)
treee6a394bfd74dbeaeece227ac21b2272bf618bfa2 /fs.h
parentec5783cbd2b52b3e566938fc8d07851e117005e2 (diff)
downloadxv6-labs-d911d83ca1ff002f170f2c77975c1a6d705856a6.tar.gz
xv6-labs-d911d83ca1ff002f170f2c77975c1a6d705856a6.tar.bz2
xv6-labs-d911d83ca1ff002f170f2c77975c1a6d705856a6.zip
fix various comments
Diffstat (limited to 'fs.h')
-rw-r--r--fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs.h b/fs.h
index 8687d16..241322b 100644
--- a/fs.h
+++ b/fs.h
@@ -9,8 +9,8 @@
// File system super block
struct superblock {
- uint size; // Size of file system (bytes???) xxx
- uint nblocks; // Number of blocks
+ uint size; // Size of file system image (blocks)
+ uint nblocks; // Number of data blocks
uint ninodes; // Number of inodes.
};