X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fmessages%2FMOSDPGRecoveryDeleteReply.h;fp=src%2Fceph%2Fsrc%2Fmessages%2FMOSDPGRecoveryDeleteReply.h;h=b4f835edb30c7698df2ab4046532699601f3a718;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/messages/MOSDPGRecoveryDeleteReply.h b/src/ceph/src/messages/MOSDPGRecoveryDeleteReply.h new file mode 100644 index 0000000..b4f835e --- /dev/null +++ b/src/ceph/src/messages/MOSDPGRecoveryDeleteReply.h @@ -0,0 +1,68 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef MOSDRECOVERYDELETEREPLY_H +#define MOSDRECOVERYDELETEREPLY_H + +#include "MOSDFastDispatchOp.h" +#include "include/ceph_features.h" + +struct MOSDPGRecoveryDeleteReply : public MOSDFastDispatchOp { + static const int HEAD_VERSION = 2; + static const int COMPAT_VERSION = 1; + + pg_shard_t from; + spg_t pgid; + epoch_t map_epoch, min_epoch; + list > objects; + + epoch_t get_map_epoch() const override { + return map_epoch; + } + epoch_t get_min_epoch() const override { + return min_epoch; + } + spg_t get_spg() const override { + return pgid; + } + + MOSDPGRecoveryDeleteReply() + : MOSDFastDispatchOp(MSG_OSD_PG_RECOVERY_DELETE_REPLY, HEAD_VERSION, COMPAT_VERSION), + map_epoch(0), min_epoch(0) + {} + + void decode_payload() override { + bufferlist::iterator p = payload.begin(); + ::decode(pgid.pgid, p); + ::decode(map_epoch, p); + if (header.version == 1 && + !HAVE_FEATURE(get_connection()->get_features(), SERVER_LUMINOUS)) { + min_epoch = map_epoch; + } else { + ::decode(min_epoch, p); + } + ::decode(objects, p); + ::decode(pgid.shard, p); + ::decode(from, p); + } + + void encode_payload(uint64_t features) override { + ::encode(pgid.pgid, payload); + ::encode(map_epoch, payload); + if (HAVE_FEATURE(features, SERVER_LUMINOUS)) { + ::encode(min_epoch, payload); + } + ::encode(objects, payload); + ::encode(pgid.shard, payload); + ::encode(from, payload); + } + + void print(ostream& out) const override { + out << "MOSDPGRecoveryDeleteReply(" << pgid + << " e" << map_epoch << "," << min_epoch << " " << objects << ")"; + } + + const char *get_type_name() const override { return "recovery_delete_reply"; } +}; + +#endif