From: Sage Weil Date: Tue, 8 Jul 2014 23:11:44 +0000 (-0700) Subject: osd: s/applying repop/canceling repop/ X-Git-Tag: v0.83~21^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ef40737eee4389faa7792661a0f9d15b3d0440f2;p=ceph.git 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 --- diff --git a/src/osd/ReplicatedPG.cc b/src/osd/ReplicatedPG.cc index 21ae58248fa7..3933cd022631 100644 --- a/src/osd/ReplicatedPG.cc +++ b/src/osd/ReplicatedPG.cc @@ -9218,7 +9218,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;