Skip to content

Commit

Permalink
osd/scrub: late-arriving reservation grants are not an error
Browse files Browse the repository at this point in the history
... as, barring a bug, these are simply the successful grants
received after one replica had failed to secure the required
resources.

Fixes: https://tracker.ceph.com/issues/54172

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
  • Loading branch information
ronen-fr committed Jun 28, 2022
1 parent 311a7b6 commit ac236d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/scrubber/pg_scrubber.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1634,7 +1634,7 @@ void PgScrubber::handle_scrub_reserve_grant(OpRequestRef op, pg_shard_t from)
if (m_reservations.has_value()) {
m_reservations->handle_reserve_grant(op, from);
} else {
derr << __func__ << ": received unsolicited reservation grant from osd "
dout(20) << __func__ << ": late/unsolicited reservation grant from osd "
<< from << " (" << op << ")" << dendl;
}
}
Expand Down

0 comments on commit ac236d0

Please sign in to comment.