From: Yuri Weinstein Date: Mon, 3 Feb 2025 15:59:32 +0000 (-0800) Subject: Merge pull request #61232 from xxhdx1985126/wip-67888-followup X-Git-Tag: v20.0.0~271 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2fe3f079c742f5759a0c0bb36dc6bbd9cefe9ebe;p=ceph.git Merge pull request #61232 from xxhdx1985126/wip-67888-followup osd/PeeringState: rename "cancel_backfill" to "suspend_backfill" Reviewed-by: Samuel Just --- 2fe3f079c742f5759a0c0bb36dc6bbd9cefe9ebe diff --cc src/crimson/osd/backfill_state.h index 517a02ea4df9,ebaf099b76fc..aa0e2e9ae4fc --- a/src/crimson/osd/backfill_state.h +++ b/src/crimson/osd/backfill_state.h @@@ -59,11 -59,9 +59,11 @@@ struct BackfillState struct RequestDone : sc::event { }; - struct CancelBackfill : sc::event { + struct SuspendBackfill : sc::event { }; + struct ThrottleAcquired : sc::event { + }; private: // internal events struct RequestPrimaryScanning : sc::event { @@@ -257,9 -255,8 +257,9 @@@ public using reactions = boost::mpl::list< sc::custom_reaction, sc::transition, - sc::custom_reaction, + sc::custom_reaction, sc::custom_reaction, + sc::transition, sc::transition>; explicit Waiting(my_context); sc::result react(ObjectPushed);