projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90e5aed
)
Comment.
author
Ben Pfaff
<blp@cs.stanford.edu>
Wed, 5 Apr 2006 20:59:27 +0000
(20:59 +0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Wed, 5 Apr 2006 20:59:27 +0000
(20:59 +0000)
Thanks to "Vincenzo Di Nicola" <dinicola@stanford.edu> for the question.
src/filesys/inode.c
patch
|
blob
|
history
diff --git
a/src/filesys/inode.c
b/src/filesys/inode.c
index 8e954abc32f35c782cd04c9f0715a7291a86edbb..17f4b4680f656fdbda2e8344b36366ba478a6315 100644
(file)
--- a/
src/filesys/inode.c
+++ b/
src/filesys/inode.c
@@
-76,6
+76,9
@@
inode_create (disk_sector_t sector, off_t length)
bool success = false;
ASSERT (length >= 0);
+
+ /* If this assertion fails, the inode structure is not exactly
+ one sector in size, and you should fix that. */
ASSERT (sizeof *disk_inode == DISK_SECTOR_SIZE);
disk_inode = calloc (1, sizeof *disk_inode);