From 15d0fdbe81e9aef4e61e7533e1ce96304e7c15c1 Mon Sep 17 00:00:00 2001 From: Ronen Friedman Date: Mon, 27 Jun 2022 16:02:15 +0000 Subject: [PATCH] osd/scrub: late-arriving reservation grants are not an error ... 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/56400 Signed-off-by: Ronen Friedman (cherry picked from commit 141bce2929ef057e3ec80b3823de95ceedf62b7d) Conflicts: src/osd/scrubber/pg_scrubber.cc No real conflict. Solved by selecting the changed line. --- src/osd/pg_scrubber.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osd/pg_scrubber.cc b/src/osd/pg_scrubber.cc index 59372e552fc28..9814845d6f063 100644 --- a/src/osd/pg_scrubber.cc +++ b/src/osd/pg_scrubber.cc @@ -1514,8 +1514,8 @@ 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 " << from - << " (" << op << ")" << dendl; + dout(20) << __func__ << ": late/unsolicited reservation grant from osd " + << from << " (" << op << ")" << dendl; } } -- 2.39.5