Changeset 772 for Whitix/branches/fs/fs/vfs/vcache.c
- Timestamp:
- 07/09/08 20:17:26 (5 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/fs/fs/vfs/vcache.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/fs/fs/vfs/vcache.c
r769 r772 335 335 return; 336 336 337 PreemptDisable(); 338 337 339 if (vNode->superBlock) 338 340 SpinLock(&vNode->superBlock->nodeListLock); … … 343 345 free(vNode->extraInfo); 344 346 345 PreemptDisable();346 347 ListRemove(&vNode->next); 347 PreemptEnable();348 348 349 349 if (vNode->superBlock) … … 351 351 352 352 MemCacheFree(vNodeCache,vNode); 353 PreemptEnable(); 353 354 } 354 355