From 6213130f76b1ee89947bae578a1fccf16b845956 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 8 Jul 2014 16:11:44 -0700 Subject: [PATCH] osd: s/applying repop/canceling repop/ The 'applying' language dates back to when we would wait for acks from replicas before applying writes locally. We don't do any of that any more; now, this loop just cancels the repops with remove_repop() and some other cleanup. Signed-off-by: Sage Weil (cherry picked from commit ef40737eee4389faa7792661a0f9d15b3d0440f2) --- src/osd/ReplicatedPG.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd/ReplicatedPG.cc b/src/osd/ReplicatedPG.cc index 5a8d9bac9246c..15d2edfd40909 100644 --- a/src/osd/ReplicatedPG.cc +++ b/src/osd/ReplicatedPG.cc @@ -9220,7 +9220,7 @@ void ReplicatedPG::apply_and_flush_repops(bool requeue) while (!repop_queue.empty()) { RepGather *repop = repop_queue.front(); repop_queue.pop_front(); - dout(10) << " applying repop tid " << repop->rep_tid << dendl; + dout(10) << " canceling repop tid " << repop->rep_tid << dendl; repop->rep_aborted = true; if (repop->on_applied) { delete repop->on_applied; -- 2.39.5