* Only remove the inode from the Volume::RemovedNodes() list when it has gone

through the VFS.
* This fixes bug #4942.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34007 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-11-12 12:52:51 +00:00
parent 70d385fb2f
commit b6670723e1
2 changed files with 4 additions and 3 deletions

View File

@ -398,9 +398,6 @@ Inode::~Inode()
file_map_delete(Map());
delete fTree;
if ((Flags() & INODE_DELETED) != 0)
fVolume->RemovedInodes().Remove(this);
rw_lock_destroy(&fLock);
}

View File

@ -363,6 +363,8 @@ bfs_remove_vnode(fs_volume* _volume, fs_vnode* _node, bool reenter)
return B_OK;
}
ASSERT((inode->Flags() & INODE_DELETED) != 0);
status_t status = inode->Free(transaction);
if (status == B_OK) {
status = transaction.Done();
@ -371,6 +373,8 @@ bfs_remove_vnode(fs_volume* _volume, fs_vnode* _node, bool reenter)
status = transaction.Done();
}
volume->RemovedInodes().Remove(inode);
// TODO: the VFS currently does not allow this to fail
delete inode;