blob: 1b27037eb413ffedca16fdb4c98ff4c555b34907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#pragma once
#include <iostream>
#include <seastar/core/future.hh>
#include "crimson/osd/osd_operation.h"
#include "osd/osd_types.h"
#include "crimson/common/type_helpers.h"
#include "osd/PeeringState.h"
namespace ceph {
class Formatter;
}
namespace crimson::osd {
class OSD;
class PG;
class PGAdvanceMap : public OperationT<PGAdvanceMap> {
public:
static constexpr OperationTypeCode type = OperationTypeCode::pg_advance_map;
protected:
OrderedPipelinePhase::Handle handle;
OSD &osd;
Ref<PG> pg;
epoch_t from;
epoch_t to;
PeeringCtx rctx;
const bool do_init;
public:
PGAdvanceMap(
OSD &osd, Ref<PG> pg, epoch_t from, epoch_t to,
PeeringCtx &&rctx, bool do_init);
~PGAdvanceMap();
void print(std::ostream &) const final;
void dump_detail(ceph::Formatter *f) const final;
seastar::future<> start();
};
}
|