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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "logmissing_request.h"
#include "common/Formatter.h"
#include "crimson/osd/osd.h"
#include "crimson/osd/osd_connection_priv.h"
#include "crimson/osd/osd_operation_external_tracking.h"
#include "crimson/osd/pg.h"
namespace {
seastar::logger& logger() {
return crimson::get_logger(ceph_subsys_osd);
}
}
namespace crimson::osd {
LogMissingRequest::LogMissingRequest(crimson::net::ConnectionRef&& conn,
Ref<MOSDPGUpdateLogMissing> &&req)
: conn{std::move(conn)},
req{std::move(req)}
{}
void LogMissingRequest::print(std::ostream& os) const
{
os << "LogMissingRequest("
<< "from=" << req->from
<< " req=" << *req
<< ")";
}
void LogMissingRequest::dump_detail(Formatter *f) const
{
f->open_object_section("LogMissingRequest");
f->dump_stream("req_tid") << req->get_tid();
f->dump_stream("pgid") << req->get_spg();
f->dump_unsigned("map_epoch", req->get_map_epoch());
f->dump_unsigned("min_epoch", req->get_min_epoch());
f->dump_stream("entries") << req->entries;
f->dump_stream("from") << req->from;
f->close_section();
}
ConnectionPipeline &LogMissingRequest::get_connection_pipeline()
{
return get_osd_priv(conn.get()).replicated_request_conn_pipeline;
}
ClientRequest::PGPipeline &LogMissingRequest::client_pp(PG &pg)
{
return pg.request_pg_pipeline;
}
seastar::future<> LogMissingRequest::with_pg(
ShardServices &shard_services, Ref<PG> pg)
{
logger().debug("{}: LogMissingRequest::with_pg", *this);
IRef ref = this;
return interruptor::with_interruption([this, pg] {
logger().debug("{}: pg present", *this);
return this->template enter_stage<interruptor>(client_pp(*pg).await_map
).then_interruptible([this, pg] {
return this->template with_blocking_event<
PG_OSDMapGate::OSDMapBlocker::BlockingEvent
>([this, pg](auto &&trigger) {
return pg->osdmap_gate.wait_for_map(
std::move(trigger), req->min_epoch);
});
}).then_interruptible([this, pg](auto) {
return pg->do_update_log_missing(req, conn);
});
}, [ref](std::exception_ptr) { return seastar::now(); }, pg);
}
}
|