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

Issue 2918893002: evict larger entries first (Closed)

Created:
3 years, 6 months ago by hubbe
Modified:
3 years, 5 months ago
CC:
gavinp, chromium-reviews, cbentzel+watch_chromium.org, gavinp+disk_chromium.org, net-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Changes the eviction algorithm to take the size of the entry into account. Weighting by size means that large entries will get thrown out of the cache sooner and the end result is that the cache will have more, but smaller entries. Design doc: https://docs.google.com/document/d/1N07uwDiOipRcMG3SanxR8X8flvxrh9Axi1SLpfRNKCY/edit BUG=700102, 736437 Review-Url: https://codereview.chromium.org/2918893002 Cr-Commit-Position: refs/heads/master@{#488058} Committed: https://chromium.googlesource.com/chromium/src/+/a9eeb01aaf3e555b843f78298de19b2f1ac29fa8

Patch Set 1 #

Patch Set 2 : bugfix #

Patch Set 3 : put it behind a flag, leave out large file change for now #

Patch Set 4 : use rank instead of time #

Total comments: 9

Patch Set 5 : comment added #

Patch Set 6 : faster, cleaner, stronger, better #

Total comments: 6

Patch Set 7 : comments addressed #

Total comments: 5

Patch Set 8 : use simple experiment to clear cache #

Total comments: 27

Patch Set 9 : comments addressed #

Patch Set 10 : update experiment param #

Total comments: 2

Patch Set 11 : use GetSimpleExperiment() #

Patch Set 12 : broke a test, fixing it #

Patch Set 13 : use std::sort #

Total comments: 13

Patch Set 14 : tests added, comments addressed #

Total comments: 25

Patch Set 15 : more tests, less code #

Patch Set 16 : -SortHelper #

Unified diffs Side-by-side diffs Delta from patch set Stats (+232 lines, -49 lines) Patch
M net/disk_cache/simple/simple_experiment.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +7 lines, -0 lines 0 comments Download
M net/disk_cache/simple/simple_experiment.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +42 lines, -30 lines 0 comments Download
M net/disk_cache/simple/simple_experiment_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +51 lines, -0 lines 0 comments Download
M net/disk_cache/simple/simple_index.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +33 lines, -19 lines 0 comments Download
M net/disk_cache/simple/simple_index_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +99 lines, -0 lines 0 comments Download

Messages

Total messages: 154 (73 generated)
hubbe
Strawman for how to let the disk cache handle media files better.
3 years, 6 months ago (2017-06-01 22:12:52 UTC) #3
jkarlin
We have basically no data on how various cache parameters affect performance (other than the ...
3 years, 6 months ago (2017-06-02 00:29:58 UTC) #11
hubbe
On 2017/06/02 00:29:58, jkarlin wrote: > We have basically no data on how various cache ...
3 years, 6 months ago (2017-06-02 17:24:49 UTC) #12
Maks Orlovich
> The expected result would be that we get more cache hits, but fewer bytes ...
3 years, 6 months ago (2017-06-02 17:31:49 UTC) #13
chromium-reviews
Yeah, LRU-2 seems like a pretty good choice, and it's really easy to implement. Might ...
3 years, 6 months ago (2017-06-02 17:40:37 UTC) #14
hubbe
The original LRU-K seems to be more complicated than we'd actually need. It would probably ...
3 years, 6 months ago (2017-06-02 17:55:43 UTC) #15
chromium-reviews
PS: I actually think cache-tuning is fun. so if anybody wants to point me to ...
3 years, 6 months ago (2017-06-02 18:00:38 UTC) #16
jkarlin
On 2017/06/02 18:00:38, chromium-reviews wrote: > PS: I actually think cache-tuning is fun. so if ...
3 years, 6 months ago (2017-06-05 13:00:48 UTC) #17
hubbe
On 2017/06/05 13:00:48, jkarlin wrote: > On 2017/06/02 18:00:38, chromium-reviews wrote: > > PS: I ...
3 years, 6 months ago (2017-06-05 17:26:27 UTC) #18
jkarlin
You'll want to check out simple_experiment.h/cc for creating a SimpleCache experiment. There has only ever ...
3 years, 6 months ago (2017-06-05 17:40:05 UTC) #19
chromium-reviews
I'm not sure what simple_experiment.cc is for. I mean, normally I just add a base::Feature ...
3 years, 6 months ago (2017-06-05 18:26:35 UTC) #20
hubbe
On 2017/06/05 18:26:35, chromium-reviews wrote: > I'm not sure what simple_experiment.cc is for. > I ...
3 years, 6 months ago (2017-06-05 19:33:35 UTC) #23
Maks Orlovich
> Ok, so I put everything behind a flag, and I reverted the change to ...
3 years, 6 months ago (2017-06-05 20:14:52 UTC) #25
hubbe
On 2017/06/05 20:14:52, Maks Orlovich wrote: > > Ok, so I put everything behind a ...
3 years, 6 months ago (2017-06-05 21:56:31 UTC) #26
jkarlin
> I'm not sure what simple_experiment.cc is for. > I mean, normally I just add ...
3 years, 6 months ago (2017-06-06 14:09:13 UTC) #31
hubbe
On 2017/06/06 14:09:13, jkarlin wrote: > > I'm not sure what simple_experiment.cc is for. > ...
3 years, 6 months ago (2017-06-06 18:14:53 UTC) #32
jkarlin
On 2017/06/06 18:14:53, hubbe wrote: > On 2017/06/06 14:09:13, jkarlin wrote: > > > I'm ...
3 years, 6 months ago (2017-06-07 18:58:22 UTC) #33
hubbe
On 2017/06/07 18:58:22, jkarlin wrote: > On 2017/06/06 18:14:53, hubbe wrote: > > On 2017/06/06 ...
3 years, 6 months ago (2017-06-07 19:38:44 UTC) #34
jkarlin
On 2017/06/07 19:38:44, hubbe wrote: > On 2017/06/07 18:58:22, jkarlin wrote: > > On 2017/06/06 ...
3 years, 6 months ago (2017-06-07 19:46:08 UTC) #35
jkarlin
https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc#newcode300 net/disk_cache/simple/simple_index.cc:300: struct EvictionSortHelper { Struct needs comment https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc#newcode308 net/disk_cache/simple/simple_index.cc:308: EntryMetadata::kEstimatedEntryOverhead); ...
3 years, 6 months ago (2017-06-08 14:32:49 UTC) #36
hubbe
https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc#newcode300 net/disk_cache/simple/simple_index.cc:300: struct EvictionSortHelper { On 2017/06/08 14:32:49, jkarlin wrote: > ...
3 years, 6 months ago (2017-06-08 17:45:03 UTC) #39
jkarlin
https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc#newcode308 net/disk_cache/simple/simple_index.cc:308: EntryMetadata::kEstimatedEntryOverhead); On 2017/06/08 17:45:03, hubbe wrote: > On 2017/06/08 ...
3 years, 6 months ago (2017-06-08 18:18:53 UTC) #40
hubbe
https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc#newcode308 net/disk_cache/simple/simple_index.cc:308: EntryMetadata::kEstimatedEntryOverhead); On 2017/06/08 18:18:53, jkarlin wrote: > On 2017/06/08 ...
3 years, 6 months ago (2017-06-08 18:23:36 UTC) #41
jkarlin
On 2017/06/08 18:23:36, hubbe wrote: > https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc > File net/disk_cache/simple/simple_index.cc (right): > > https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc#newcode308 > ...
3 years, 6 months ago (2017-06-09 15:31:34 UTC) #44
hubbe
On 2017/06/09 15:31:34, jkarlin wrote: > On 2017/06/08 18:23:36, hubbe wrote: > > > https://codereview.chromium.org/2918893002/diff/60001/net/disk_cache/simple/simple_index.cc ...
3 years, 6 months ago (2017-06-09 17:34:31 UTC) #46
hubbe
Based on one-off research (linked in the design doc) I have dusted off, cleaned and ...
3 years, 6 months ago (2017-06-21 22:49:40 UTC) #51
Maks Orlovich
LGTM modulo details, but I have no approval rights anyway. https://codereview.chromium.org/2918893002/diff/100001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/100001/net/disk_cache/simple/simple_index.cc#newcode55 ...
3 years, 6 months ago (2017-06-22 16:30:51 UTC) #54
hubbe
https://codereview.chromium.org/2918893002/diff/100001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/100001/net/disk_cache/simple/simple_index.cc#newcode55 net/disk_cache/simple/simple_index.cc:55: static const int kEstimatedEntryOverhead = 512; On 2017/06/22 16:30:51, ...
3 years, 6 months ago (2017-06-22 17:36:11 UTC) #57
hubbe
On 2017/06/22 17:36:11, hubbe wrote: > https://codereview.chromium.org/2918893002/diff/100001/net/disk_cache/simple/simple_index.cc > File net/disk_cache/simple/simple_index.cc (right): > > https://codereview.chromium.org/2918893002/diff/100001/net/disk_cache/simple/simple_index.cc#newcode55 > ...
3 years, 6 months ago (2017-06-22 17:37:00 UTC) #58
Maks Orlovich
LGTM > How long is jkarlin out for? > Should I wait for him to ...
3 years, 6 months ago (2017-06-22 17:43:44 UTC) #59
pasko
Exciting! Thank you for doing this. Though I would like to go through a few ...
3 years, 5 months ago (2017-06-23 15:10:31 UTC) #62
hubbe
Updated design doc. Created Launch Bug (736437) Replied to comments. https://codereview.chromium.org/2918893002/diff/120001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/120001/net/disk_cache/simple/simple_experiment.cc#newcode16 ...
3 years, 5 months ago (2017-06-23 18:25:52 UTC) #64
pasko
https://codereview.chromium.org/2918893002/diff/120001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/120001/net/disk_cache/simple/simple_experiment.cc#newcode19 net/disk_cache/simple/simple_experiment.cc:19: "SimpleCacheEvictionWithSize", base::FEATURE_DISABLED_BY_DEFAULT}; On 2017/06/23 18:25:52, hubbe wrote: > On ...
3 years, 5 months ago (2017-06-26 13:32:13 UTC) #65
hubbe
Updated to use simple_experiment to clear cache when entering/exiting the experiment.
3 years, 5 months ago (2017-06-28 22:48:52 UTC) #68
pasko
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode26 net/disk_cache/simple/simple_experiment.cc:26: void CheckForSimpleCacheEvictionWithSizeExperiment( nit: "SimpleCache" looks redundant here, I'd suggest ...
3 years, 5 months ago (2017-06-29 15:27:25 UTC) #71
jkarlin
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode32 net/disk_cache/simple/simple_experiment.cc:32: experiment->type = SimpleExperimentType::EVICT_WITH_SIZE; You should also parse the parameter ...
3 years, 5 months ago (2017-06-29 16:26:12 UTC) #72
hubbe
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode26 net/disk_cache/simple/simple_experiment.cc:26: void CheckForSimpleCacheEvictionWithSizeExperiment( On 2017/06/29 15:27:25, pasko (OOO) wrote: > ...
3 years, 5 months ago (2017-06-29 18:55:27 UTC) #73
jkarlin
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode32 net/disk_cache/simple/simple_experiment.cc:32: experiment->type = SimpleExperimentType::EVICT_WITH_SIZE; On 2017/06/29 18:55:26, hubbe wrote: > ...
3 years, 5 months ago (2017-06-29 19:17:01 UTC) #74
hubbe
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode32 net/disk_cache/simple/simple_experiment.cc:32: experiment->type = SimpleExperimentType::EVICT_WITH_SIZE; On 2017/06/29 19:17:01, jkarlin_slow wrote: > ...
3 years, 5 months ago (2017-06-29 19:26:48 UTC) #75
jkarlin
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode32 net/disk_cache/simple/simple_experiment.cc:32: experiment->type = SimpleExperimentType::EVICT_WITH_SIZE; On 2017/06/29 19:26:48, hubbe wrote: > ...
3 years, 5 months ago (2017-06-30 11:57:27 UTC) #76
hubbe
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode32 net/disk_cache/simple/simple_experiment.cc:32: experiment->type = SimpleExperimentType::EVICT_WITH_SIZE; On 2017/06/30 11:57:27, jkarlin_slow wrote: > ...
3 years, 5 months ago (2017-06-30 17:30:34 UTC) #77
jkarlin
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode32 net/disk_cache/simple/simple_experiment.cc:32: experiment->type = SimpleExperimentType::EVICT_WITH_SIZE; On 2017/06/30 17:30:34, hubbe wrote: > ...
3 years, 5 months ago (2017-06-30 18:18:48 UTC) #78
hubbe
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_experiment.cc#newcode32 net/disk_cache/simple/simple_experiment.cc:32: experiment->type = SimpleExperimentType::EVICT_WITH_SIZE; On 2017/06/30 18:18:48, jkarlin_slow wrote: > ...
3 years, 5 months ago (2017-06-30 19:00:43 UTC) #79
pasko
https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_index.cc#newcode346 net/disk_cache/simple/simple_index.cc:346: // std::sort() to avoid N-squared worst case scenario. On ...
3 years, 5 months ago (2017-07-06 12:30:17 UTC) #84
pasko
Also: please enhance the commit description (roughly: what, why and how). If you reference the ...
3 years, 5 months ago (2017-07-06 12:33:51 UTC) #85
jkarlin
https://codereview.chromium.org/2918893002/diff/180001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/180001/net/disk_cache/simple/simple_index.cc#newcode325 net/disk_cache/simple/simple_index.cc:325: bool use_size = base::FeatureList::IsEnabled(kSimpleCacheEvictionWithSize); We shouldn't use base::FeatureList::IsEnabled for ...
3 years, 5 months ago (2017-07-06 13:58:18 UTC) #86
hubbe
On 2017/07/06 12:30:17, pasko wrote: > https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_index.cc > File net/disk_cache/simple/simple_index.cc (right): > > https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_index.cc#newcode346 > ...
3 years, 5 months ago (2017-07-10 18:21:37 UTC) #87
hubbe
https://codereview.chromium.org/2918893002/diff/180001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/180001/net/disk_cache/simple/simple_index.cc#newcode325 net/disk_cache/simple/simple_index.cc:325: bool use_size = base::FeatureList::IsEnabled(kSimpleCacheEvictionWithSize); On 2017/07/06 13:58:18, jkarlin_slow wrote: ...
3 years, 5 months ago (2017-07-10 18:23:53 UTC) #90
hubbe
3 years, 5 months ago (2017-07-10 18:23:59 UTC) #91
pasko
On 2017/07/10 18:21:37, hubbe wrote: > On 2017/07/06 12:30:17, pasko wrote: > > > https://codereview.chromium.org/2918893002/diff/140001/net/disk_cache/simple/simple_index.cc ...
3 years, 5 months ago (2017-07-11 13:27:33 UTC) #99
hubbe
On 2017/07/11 13:27:33, pasko wrote: > On 2017/07/10 18:21:37, hubbe wrote: > > On 2017/07/06 ...
3 years, 5 months ago (2017-07-11 17:58:28 UTC) #101
hubbe
On 2017/07/11 13:27:33, pasko wrote: > On 2017/07/10 18:21:37, hubbe wrote: > > On 2017/07/06 ...
3 years, 5 months ago (2017-07-11 17:58:32 UTC) #102
Maks Orlovich
Benchmarked new revision on my MotoG3, and it performs fine --- ~2.2ms instead of existing ...
3 years, 5 months ago (2017-07-12 13:47:21 UTC) #106
jkarlin
https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_experiment.cc#newcode29 net/disk_cache/simple/simple_experiment.cc:29: if (disk_cache::SimpleExperimentType::NONE != experiment->type) After returning early in GetSimpleExperiment ...
3 years, 5 months ago (2017-07-12 15:51:41 UTC) #107
hubbe
https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_experiment.cc File net/disk_cache/simple/simple_experiment.cc (right): https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_experiment.cc#newcode29 net/disk_cache/simple/simple_experiment.cc:29: if (disk_cache::SimpleExperimentType::NONE != experiment->type) On 2017/07/12 15:51:40, jkarlin wrote: ...
3 years, 5 months ago (2017-07-12 18:22:50 UTC) #110
jkarlin
https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_index.cc#newcode324 net/disk_cache/simple/simple_index.cc:324: uint32_t now = (base::Time::Now() - base::Time::UnixEpoch()).InSeconds(); On 2017/07/12 18:22:50, ...
3 years, 5 months ago (2017-07-13 13:24:26 UTC) #113
hubbe
On 2017/07/13 13:24:26, jkarlin wrote: > https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_index.cc > File net/disk_cache/simple/simple_index.cc (right): > > https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_index.cc#newcode324 > ...
3 years, 5 months ago (2017-07-13 17:34:13 UTC) #114
jkarlin
On 2017/07/13 17:34:13, hubbe wrote: > On 2017/07/13 13:24:26, jkarlin wrote: > > > https://codereview.chromium.org/2918893002/diff/240001/net/disk_cache/simple/simple_index.cc ...
3 years, 5 months ago (2017-07-13 17:40:38 UTC) #115
Maks Orlovich
> You're only using one core here. Not sure which benchmark, perhaps Maks has a ...
3 years, 5 months ago (2017-07-13 17:48:18 UTC) #116
hubbe
On 2017/07/13 17:48:18, Maks Orlovich wrote: > > You're only using one core here. Not ...
3 years, 5 months ago (2017-07-13 17:54:49 UTC) #117
chromium-reviews
Running the phone version right now... On Thu, Jul 13, 2017 at 1:54 PM, <hubbe@chromium.org> ...
3 years, 5 months ago (2017-07-13 18:10:02 UTC) #118
Maks Orlovich
Using base::Time makes it about 2x slower on my MotoG3. (4.4ms, with previous patch revision ...
3 years, 5 months ago (2017-07-13 18:20:23 UTC) #119
jkarlin
On 2017/07/13 17:54:49, hubbe wrote: > On 2017/07/13 17:48:18, Maks Orlovich wrote: > > > ...
3 years, 5 months ago (2017-07-13 18:26:42 UTC) #120
jkarlin
On 2017/07/13 18:20:23, Maks Orlovich wrote: > Using base::Time makes it about 2x slower on ...
3 years, 5 months ago (2017-07-13 18:39:52 UTC) #121
jkarlin
On 2017/07/13 18:39:52, jkarlin wrote: > On 2017/07/13 18:20:23, Maks Orlovich wrote: > > Using ...
3 years, 5 months ago (2017-07-13 18:40:19 UTC) #122
Maks Orlovich
> > That must be noise. I have a hard time believing that the linear ...
3 years, 5 months ago (2017-07-13 18:47:05 UTC) #123
hubbe
On 2017/07/13 18:47:05, Maks Orlovich wrote: > > > That must be noise. I have ...
3 years, 5 months ago (2017-07-13 18:59:36 UTC) #124
Maks Orlovich
Sure doesn't look random to me (though baseline is unpatched...) --- this one is from ...
3 years, 5 months ago (2017-07-13 20:02:56 UTC) #125
jkarlin
On 2017/07/13 20:02:56, Maks Orlovich wrote: > Sure doesn't look random to me (though baseline ...
3 years, 5 months ago (2017-07-14 15:00:01 UTC) #126
jkarlin
lgtm!
3 years, 5 months ago (2017-07-14 15:19:57 UTC) #127
hubbe
On 2017/07/14 15:19:57, jkarlin wrote: > lgtm! pasko, please take another look?
3 years, 5 months ago (2017-07-14 16:55:44 UTC) #128
hubbe
On 2017/07/14 16:55:44, hubbe wrote: > On 2017/07/14 15:19:57, jkarlin wrote: > > lgtm! > ...
3 years, 5 months ago (2017-07-17 23:12:43 UTC) #129
pasko
overall looks a lot cleaner, thank you! My suggestions below are relatively minor stylistic and ...
3 years, 5 months ago (2017-07-18 15:30:01 UTC) #130
hubbe
Not too worried about the vacation. More worried about you guys tag-teaming this into the ...
3 years, 5 months ago (2017-07-18 18:27:40 UTC) #133
pasko
lgtm, thank you https://codereview.chromium.org/2918893002/diff/260001/net/disk_cache/simple/simple_index.cc File net/disk_cache/simple/simple_index.cc (right): https://codereview.chromium.org/2918893002/diff/260001/net/disk_cache/simple/simple_index.cc#newcode320 net/disk_cache/simple/simple_index.cc:320: using SortHelper = std::pair<uint64_t, const EntrySet::value_type*>; ...
3 years, 5 months ago (2017-07-19 14:42:28 UTC) #136
pasko
I was wondering if your long commit message lines are intentional. And I do not ...
3 years, 5 months ago (2017-07-19 14:50:17 UTC) #137
hubbe
> I was wondering if your long commit message lines are >intentional. And I do ...
3 years, 5 months ago (2017-07-19 17:50:33 UTC) #139
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2918893002/300001
3 years, 5 months ago (2017-07-19 20:48:17 UTC) #146
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/342510)
3 years, 5 months ago (2017-07-19 22:47:50 UTC) #148
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2918893002/300001
3 years, 5 months ago (2017-07-19 23:23:09 UTC) #150
commit-bot: I haz the power
3 years, 5 months ago (2017-07-20 00:13:43 UTC) #154
Message was sent while issue was closed.
Committed patchset #16 (id:300001) as
https://chromium.googlesource.com/chromium/src/+/a9eeb01aaf3e555b843f78298de1...

Powered by Google App Engine
This is Rietveld 408576698