summaryrefslogtreecommitdiff
path: root/fs.h
diff options
context:
space:
mode:
authorrsc <rsc>2006-09-08 14:31:17 +0000
committerrsc <rsc>2006-09-08 14:31:17 +0000
commit4194835901c7151630c22ae7cd8fbba7d3b736ab (patch)
treeaaa0c4edfc2e5c414d23af2ee23715e26435221a /fs.h
parentcd12eea3c739bc08f0d1a4492073d2ff18f4c453 (diff)
downloadxv6-labs-4194835901c7151630c22ae7cd8fbba7d3b736ab.tar.gz
xv6-labs-4194835901c7151630c22ae7cd8fbba7d3b736ab.tar.bz2
xv6-labs-4194835901c7151630c22ae7cd8fbba7d3b736ab.zip
tweak fs.h spacing; add comment
Diffstat (limited to 'fs.h')
-rw-r--r--fs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs.h b/fs.h
index 241322b..89c200b 100644
--- a/fs.h
+++ b/fs.h
@@ -46,6 +46,8 @@ struct dinode {
// Block containing bit for block b
#define BBLOCK(b, ninodes) (b/BPB + (ninodes)/IPB + 3)
+// PAGEBREAK: 10
+// Directory is a file containing a sequence of dirent structures.
#define DIRSIZ 14
struct dirent {