1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

Merge pull request from LiumxNL/wip-170407

mon/PGMonitor: fix wrongly report "pg stuck in inactive"

Reviewed-by: Sage Weil <sage@redhat.com>
This commit is contained in:
Sage Weil 2017-04-28 08:46:47 -05:00 committed by GitHub
commit e9fb6a06e0

View File

@ -539,6 +539,13 @@ void PGMap::stat_pg_update(const pg_t pgid, pg_stat_t& s,
s.blocked_by == n.blocked_by;
stat_pg_sub(pgid, s, sameosds);
// if acting_primary has shift to an just restored osd, and pg yet to finish
// peering, many attributes in current stats remain stale. others seem don't
// mater much while faulty last_active will make "pg stuck in" check unhappy.
if (!(n.state & (PG_STATE_ACTIVE | PG_STATE_PEERED)) &&
n.last_active < s.last_active)
n.last_active = s.last_active;
s = n;
stat_pg_add(pgid, n, sameosds);
}