Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: net/disk_cache/rankings.cc

Issue 149218: Disk cache: Keep a map of all open entries.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« net/disk_cache/backend_impl.cc ('K') | « net/disk_cache/eviction.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/rankings.cc
===================================================================
--- net/disk_cache/rankings.cc (revision 19788)
+++ net/disk_cache/rankings.cc (working copy)
@@ -223,14 +223,16 @@
backend_->OnEvent(Stats::OPEN_RANKINGS);
- if (backend_->GetCurrentEntryId() != rankings->Data()->dirty) {
+ if (backend_->GetCurrentEntryId() != rankings->Data()->dirty ||
+ !backend_->IsOpen(rankings)) {
// We cannot trust this entry, but we cannot initiate a cleanup from this
// point (we may be in the middle of a cleanup already). Just get rid of
// the invalid pointer and continue; the entry will be deleted when detected
// from a regular open/create path.
rankings->Data()->pointer = NULL;
+ rankings->Data()->dirty = backend_->GetCurrentEntryId() - 1;
if (!rankings->Data()->dirty)
- rankings->Data()->dirty = backend_->GetCurrentEntryId() - 1;
+ rankings->Data()->dirty--;
return true;
}
« net/disk_cache/backend_impl.cc ('K') | « net/disk_cache/eviction.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698