Skip to content

Commit

Permalink
Merge 7831582 into baa74b8
Browse files Browse the repository at this point in the history
  • Loading branch information
ldachary committed Mar 11, 2015
2 parents baa74b8 + 7831582 commit c9e6b15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/osd/ReplicatedPG.cc
Expand Up @@ -11662,8 +11662,8 @@ void ReplicatedPG::agent_estimate_atime_temp(const hobject_t& oid,
return;
}
time_t now = ceph_clock_now(NULL).sec();
for (map<time_t,HitSetRef>::iterator p = agent_state->hit_set_map.begin();
p != agent_state->hit_set_map.end();
for (map<time_t,HitSetRef>::iterator p = agent_state->hit_set_map.rbegin();
p != agent_state->hit_set_map.rend();
++p) {
if (p->second->contains(oid)) {
if (*atime < 0)
Expand Down

0 comments on commit c9e6b15

Please sign in to comment.