From: Samuel Just Date: Thu, 3 Feb 2011 22:29:43 +0000 (-0800) Subject: MOSDRepScrub: Adds a message for initiating a replica scrub X-Git-Tag: v0.24.3~2^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7245b6a16ec1316842d3b18346e6f06ed2462221;p=ceph.git MOSDRepScrub: Adds a message for initiating a replica scrub Signed-off-by: Samuel Just --- diff --git a/src/messages/MOSDRepScrub.h b/src/messages/MOSDRepScrub.h new file mode 100644 index 00000000000..67fa723d1c7 --- /dev/null +++ b/src/messages/MOSDRepScrub.h @@ -0,0 +1,62 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2004-2006 Sage Weil + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * + */ + + +#ifndef CEPH_MOSDREPSCRUB_H +#define CEPH_MOSDREPSCRUB_H + +#include "msg/Message.h" + +/* + * instruct an OSD initiate a replica scrub on a specific PG + */ + +struct MOSDRepScrub : public Message { + pg_t pgid; // PG to scrub + eversion_t scrub_from; // only scrub log entries after scrub_from + epoch_t map_epoch; + + MOSDRepScrub() {} + MOSDRepScrub(pg_t pgid, eversion_t scrub_from, epoch_t map_epoch) : + Message(MSG_OSD_REP_SCRUB), + pgid(pgid), + scrub_from(scrub_from), + map_epoch(map_epoch) {} + +private: + ~MOSDRepScrub() {} + +public: + const char *get_type_name() { return "replica scrub"; } + void print(ostream& out) { + out << "replica scrub(pg: "; + out << pgid << ",from:" << scrub_from << "epoch:" + << map_epoch; + out << ")"; + } + + void encode_payload() { + ::encode(pgid, payload); + ::encode(scrub_from, payload); + ::encode(map_epoch, payload); + } + void decode_payload() { + bufferlist::iterator p = payload.begin(); + ::decode(pgid, p); + ::decode(scrub_from, p); + ::decode(map_epoch, p); + } +}; + +#endif diff --git a/src/msg/Message.cc b/src/msg/Message.cc index a38adb8e0f7..24e54cd07ec 100644 --- a/src/msg/Message.cc +++ b/src/msg/Message.cc @@ -58,6 +58,7 @@ using namespace std; #include "messages/MOSDPGTrim.h" #include "messages/MOSDPGMissing.h" #include "messages/MOSDScrub.h" +#include "messages/MOSDRepScrub.h" #include "messages/MRemoveSnaps.h" @@ -317,6 +318,9 @@ Message *decode_message(ceph_msg_header& header, ceph_msg_footer& footer, case MSG_OSD_PG_MISSING: m = new MOSDPGMissing; break; + case MSG_OSD_REP_SCRUB: + m = new MOSDRepScrub; + break; // auth case CEPH_MSG_AUTH: m = new MAuth; diff --git a/src/msg/Message.h b/src/msg/Message.h index d161cb40334..d49d13ee0de 100644 --- a/src/msg/Message.h +++ b/src/msg/Message.h @@ -74,6 +74,7 @@ #define MSG_OSD_SCRUB 91 #define MSG_OSD_PG_MISSING 92 +#define MSG_OSD_REP_SCRUB 93