Changeset 23604 in vbox for trunk/src/VBox/VMM/PDMAsyncCompletionFileCache.cpp
- Timestamp:
- Oct 7, 2009 6:30:56 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMAsyncCompletionFileCache.cpp
r22851 r23604 418 418 static void pdmacFileCacheReadFromEndpoint(PPDMACFILECACHEENTRY pEntry) 419 419 { 420 LogFlowFunc((": Reading data into cache entry %#p\n", pEntry)); 421 420 422 /* Make sure no one evicts the entry while it is accessed. */ 421 423 pEntry->fFlags |= PDMACFILECACHE_ENTRY_IO_IN_PROGRESS; … … 446 448 static void pdmacFileCacheWriteToEndpoint(PPDMACFILECACHEENTRY pEntry) 447 449 { 450 LogFlowFunc((": Writing data from cache entry %#p\n", pEntry)); 451 448 452 /* Make sure no one evicts the entry while it is accessed. */ 449 453 pEntry->fFlags |= PDMACFILECACHE_ENTRY_IO_IN_PROGRESS; … … 904 908 || (pEntry->pList == &pCache->LruFrequentlyUsed)) 905 909 { 910 LogFlow(("Fetching data for ghost entry %#p from file\n", pEntry)); 911 906 912 if ( (pEntry->fFlags & PDMACFILECACHE_ENTRY_IO_IN_PROGRESS) 907 913 && !(pEntry->fFlags & PDMACFILECACHE_ENTRY_IS_DIRTY))
Note:
See TracChangeset
for help on using the changeset viewer.