diff options
Diffstat (limited to 'src/osd/PGPeeringEvent.cc')
-rw-r--r-- | src/osd/PGPeeringEvent.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/osd/PGPeeringEvent.cc b/src/osd/PGPeeringEvent.cc new file mode 100644 index 000000000..2d28c6f84 --- /dev/null +++ b/src/osd/PGPeeringEvent.cc @@ -0,0 +1,17 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#include "include/mempool.h" +#include "osd/PGPeeringEvent.h" +#include "messages/MOSDPGLog.h" + +MEMPOOL_DEFINE_OBJECT_FACTORY(PGPeeringEvent, pg_peering_evt, osd); + +MLogRec::MLogRec(pg_shard_t from, MOSDPGLog *msg) + : from(from), msg(msg) {} + +void MLogRec::print(std::ostream *out) const +{ + *out << "MLogRec from " << from << " "; + msg->inner_print(*out); +} |