diff options
author | rsc <rsc> | 2006-09-08 13:55:43 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-09-08 13:55:43 +0000 |
commit | d911d83ca1ff002f170f2c77975c1a6d705856a6 (patch) | |
tree | e6a394bfd74dbeaeece227ac21b2272bf618bfa2 /fs.h | |
parent | ec5783cbd2b52b3e566938fc8d07851e117005e2 (diff) | |
download | xv6-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. }; |