diff options
author | Xuehan Xu <xuxuehan@qianxin.com> | 2024-09-04 08:58:41 +0200 |
---|---|---|
committer | Xuehan Xu <xuxuehan@qianxin.com> | 2024-12-03 09:15:55 +0100 |
commit | 8f2ad5f560622f43dc8aaaba0fb5446d92c72196 (patch) | |
tree | a5d0f6b557f497441f64d3eaa22e7239bc52be54 /src/crimson | |
parent | crimson/osd/backfill_state: add pg infos to all backfill_state's logs (diff) | |
download | ceph-8f2ad5f560622f43dc8aaaba0fb5446d92c72196.tar.xz ceph-8f2ad5f560622f43dc8aaaba0fb5446d92c72196.zip |
crimson/osd/backfill_state: Enqueuing doesn't last, so there should be
no other events coming to it than those it generated itself
Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
Diffstat (limited to 'src/crimson')
-rw-r--r-- | src/crimson/osd/backfill_state.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/crimson/osd/backfill_state.h b/src/crimson/osd/backfill_state.h index 9e908af4c8a..da07a377b92 100644 --- a/src/crimson/osd/backfill_state.h +++ b/src/crimson/osd/backfill_state.h @@ -174,12 +174,9 @@ public: struct Enqueuing : sc::state<Enqueuing, BackfillMachine>, StateHelper<Enqueuing> { using reactions = boost::mpl::list< - sc::transition<CancelBackfill, Cancelled>, sc::transition<RequestPrimaryScanning, PrimaryScanning>, sc::transition<RequestReplicasScanning, ReplicasScanning>, sc::transition<RequestWaiting, Waiting>, - sc::transition<RequestDone, Done>, - sc::transition<CancelBackfill, Cancelled>, sc::transition<sc::event_base, Crashed>>; explicit Enqueuing(my_context); |