summaryrefslogtreecommitdiff
path: root/BUGS
diff options
context:
space:
mode:
authorrsc <rsc>2009-05-31 01:34:46 +0000
committerrsc <rsc>2009-05-31 01:34:46 +0000
commitf12551b5996ae6121d33afc94002ce6f7c64dcfd (patch)
tree3ac705b14a43214af68ba44d80a95f037b127d65 /BUGS
parent0badeaa29fa6bd7e72e460f4c4c68d57fec8e388 (diff)
downloadxv6-labs-f12551b5996ae6121d33afc94002ce6f7c64dcfd.tar.gz
xv6-labs-f12551b5996ae6121d33afc94002ce6f7c64dcfd.tar.bz2
xv6-labs-f12551b5996ae6121d33afc94002ce6f7c64dcfd.zip
inode reuse bug.
Suppose an inode has been used and freed. It is left marked I_VALID (the bug). Now ialloc comes along and reuses the inode. It writes the new inode type to disk and returns iget(dev, inum) to get the cache entry. Iget sees that the inode is valid and doesn't bother refreshing from disk. Now when the caller iupdates, it will write out a zero type and the file or directory has disappeared.
Diffstat (limited to 'BUGS')
0 files changed, 0 insertions, 0 deletions