projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0b5ffb
)
Comment.
author
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 3 Dec 2004 23:41:27 +0000
(23:41 +0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 3 Dec 2004 23:41:27 +0000
(23:41 +0000)
src/filesys/inode.c
patch
|
blob
|
history
diff --git
a/src/filesys/inode.c
b/src/filesys/inode.c
index 1535c7a009253140fb0f3da5fb3a519b4c463747..5ca91f157449b80c2afd29a1f00991da730d7fcd 100644
(file)
--- a/
src/filesys/inode.c
+++ b/
src/filesys/inode.c
@@
-110,7
+110,10
@@
inode_open (disk_sector_t sector)
list_elem *e;
struct inode *idx;
- /* Check whether this inode is already open. */
+ /* Check whether this inode is already open.
+ (A hash table would be better, but the Pintos base code
+ avoids using the hash table so that users are free to modify
+ it at will.) */
for (e = list_begin (&open_inodes); e != list_end (&open_inodes);
e = list_next (e))
{