--- /dev/null
+// -*- 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 <sage@newdream.net>
+ *
+ * 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_MOSDPGUPDATELOGMISSING_H
+#define CEPH_MOSDPGUPDATELOGMISSING_H
+
+#include "msg/Message.h"
+
+class MOSDPGUpdateLogMissing : public Message {
+
+ static const int HEAD_VERSION = 1;
+ static const int COMPAT_VERSION = 1;
+
+
+public:
+ epoch_t map_epoch;
+ spg_t pgid;
+ shard_id_t from;
+ ceph_tid_t rep_tid;
+ list<pg_log_entry_t> entries;
+
+ epoch_t get_epoch() const { return map_epoch; }
+ spg_t get_pgid() const { return pgid; }
+ epoch_t get_query_epoch() const { return map_epoch; }
+ ceph_tid_t get_tid() const { return rep_tid; }
+
+ MOSDPGUpdateLogMissing() :
+ Message(MSG_OSD_PG_UPDATE_LOG_MISSING, HEAD_VERSION, COMPAT_VERSION) { }
+ MOSDPGUpdateLogMissing(
+ const list<pg_log_entry_t> &entries,
+ spg_t pgid,
+ shard_id_t from,
+ epoch_t epoch,
+ ceph_tid_t rep_tid)
+ : Message(MSG_OSD_PG_UPDATE_LOG_MISSING, HEAD_VERSION, COMPAT_VERSION),
+ map_epoch(epoch),
+ pgid(pgid),
+ from(from),
+ rep_tid(rep_tid),
+ entries(entries) {}
+
+private:
+ ~MOSDPGUpdateLogMissing() {}
+
+public:
+ const char *get_type_name() const { return "PGUpdateLogMissing"; }
+ void print(ostream& out) const {
+ out << "pg_update_log_missing(" << pgid << " epoch " << map_epoch
+ << " rep_tid " << rep_tid
+ << " entries " << entries << ")";
+ }
+
+ void encode_payload(uint64_t features) {
+ ::encode(map_epoch, payload);
+ ::encode(pgid, payload);
+ ::encode(from, payload);
+ ::encode(rep_tid, payload);
+ ::encode(entries, payload);
+ }
+ void decode_payload() {
+ bufferlist::iterator p = payload.begin();
+ ::decode(map_epoch, p);
+ ::decode(pgid, p);
+ ::decode(from, p);
+ ::decode(rep_tid, p);
+ ::decode(entries, p);
+ }
+};
+
+#endif
--- /dev/null
+// -*- 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 <sage@newdream.net>
+ *
+ * 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_MOSDPGUPDATELOGMISSINGREPLY_H
+#define CEPH_MOSDPGUPDATELOGMISSINGREPLY_H
+
+#include "msg/Message.h"
+
+class MOSDPGUpdateLogMissingReply : public Message {
+
+ static const int HEAD_VERSION = 1;
+ static const int COMPAT_VERSION = 1;
+
+
+public:
+ epoch_t map_epoch;
+ spg_t pgid;
+ shard_id_t from;
+ ceph_tid_t rep_tid;
+
+ epoch_t get_epoch() const { return map_epoch; }
+ spg_t get_pgid() const { return pgid; }
+ epoch_t get_query_epoch() const { return map_epoch; }
+ ceph_tid_t get_tid() const { return rep_tid; }
+ pg_shard_t get_from() const {
+ return pg_shard_t(get_source().num(), from);
+ }
+
+ MOSDPGUpdateLogMissingReply() :
+ Message(
+ MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY,
+ HEAD_VERSION,
+ COMPAT_VERSION)
+ {}
+ MOSDPGUpdateLogMissingReply(
+ spg_t pgid,
+ shard_id_t from,
+ epoch_t epoch,
+ ceph_tid_t rep_tid)
+ : Message(
+ MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY,
+ HEAD_VERSION,
+ COMPAT_VERSION),
+ map_epoch(epoch),
+ pgid(pgid),
+ from(from),
+ rep_tid(rep_tid)
+ {}
+
+private:
+ ~MOSDPGUpdateLogMissingReply() {}
+
+public:
+ const char *get_type_name() const { return "PGUpdateLogMissingReply"; }
+ void print(ostream& out) const {
+ out << "pg_update_log_missing_reply(" << pgid << " epoch " << map_epoch
+ << " rep_tid " << rep_tid << ")";
+ }
+
+ void encode_payload(uint64_t features) {
+ ::encode(map_epoch, payload);
+ ::encode(pgid, payload);
+ ::encode(from, payload);
+ ::encode(rep_tid, payload);
+ }
+ void decode_payload() {
+ bufferlist::iterator p = payload.begin();
+ ::decode(map_epoch, p);
+ ::decode(pgid, p);
+ ::decode(from, p);
+ ::decode(rep_tid, p);
+ }
+};
+
+#endif
messages/MOSDPGQuery.h \
messages/MOSDPGRemove.h \
messages/MOSDPGScan.h \
+ messages/MOSDPGUpdateLogMissing.h \
+ messages/MOSDPGUpdateLogMissingReply.h \
messages/MOSDECSubOpWrite.h \
messages/MOSDECSubOpWriteReply.h \
messages/MOSDECSubOpRead.h \
#include "messages/MOSDECSubOpRead.h"
#include "messages/MOSDECSubOpReadReply.h"
+#include "messages/MOSDPGUpdateLogMissing.h"
+#include "messages/MOSDPGUpdateLogMissingReply.h"
+
#define DEBUGLVL 10 // debug level of output
#define dout_subsys ceph_subsys_ms
case MSG_OSD_REPOPREPLY:
m = new MOSDRepOpReply();
break;
+ case MSG_OSD_PG_UPDATE_LOG_MISSING:
+ m = new MOSDPGUpdateLogMissing();
+ break;
+ case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY:
+ m = new MOSDPGUpdateLogMissingReply();
+ break;
case CEPH_MSG_OSD_MAP:
m = new MOSDMap;
#define MSG_OSD_REPOP 112
#define MSG_OSD_REPOPREPLY 113
+#define MSG_OSD_PG_UPDATE_LOG_MISSING 114
+#define MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY 115
// *** MDS ***
#include "messages/MOSDECSubOpWriteReply.h"
#include "messages/MOSDECSubOpRead.h"
#include "messages/MOSDECSubOpReadReply.h"
+#include "messages/MOSDPGUpdateLogMissing.h"
+#include "messages/MOSDPGUpdateLogMissingReply.h"
#include "messages/MOSDAlive.h"
return replica_op_required_epoch<MOSDECSubOpReadReply, MSG_OSD_EC_READ_REPLY>(op);
case MSG_OSD_REP_SCRUB:
return replica_op_required_epoch<MOSDRepScrub, MSG_OSD_REP_SCRUB>(op);
+ case MSG_OSD_PG_UPDATE_LOG_MISSING:
+ return replica_op_required_epoch<
+ MOSDPGUpdateLogMissing, MSG_OSD_PG_UPDATE_LOG_MISSING>(
+ op);
+ case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY:
+ return replica_op_required_epoch<
+ MOSDPGUpdateLogMissingReply, MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY>(
+ op);
default:
assert(0);
return 0;
case MSG_OSD_REP_SCRUB:
handle_replica_op<MOSDRepScrub, MSG_OSD_REP_SCRUB>(op, osdmap);
break;
+ case MSG_OSD_PG_UPDATE_LOG_MISSING:
+ handle_replica_op<MOSDPGUpdateLogMissing, MSG_OSD_PG_UPDATE_LOG_MISSING>(
+ op, osdmap);
+ break;
+ case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY:
+ handle_replica_op<MOSDPGUpdateLogMissingReply,
+ MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY>(
+ op, osdmap);
+ break;
default:
assert(0);
}
case MSG_OSD_EC_READ:
case MSG_OSD_EC_READ_REPLY:
case MSG_OSD_REP_SCRUB:
+ case MSG_OSD_PG_UPDATE_LOG_MISSING:
+ case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY:
return true;
default:
return false;
#include "messages/MOSDECSubOpWriteReply.h"
#include "messages/MOSDECSubOpRead.h"
#include "messages/MOSDECSubOpReadReply.h"
+#include "messages/MOSDPGUpdateLogMissing.h"
+#include "messages/MOSDPGUpdateLogMissingReply.h"
#include "messages/MOSDSubOp.h"
#include "messages/MOSDRepOp.h"
return can_discard_replica_op<MOSDECSubOpReadReply, MSG_OSD_EC_READ_REPLY>(op);
case MSG_OSD_REP_SCRUB:
return can_discard_replica_op<MOSDRepScrub, MSG_OSD_REP_SCRUB>(op);
+ case MSG_OSD_PG_UPDATE_LOG_MISSING:
+ return can_discard_replica_op<
+ MOSDPGUpdateLogMissing, MSG_OSD_PG_UPDATE_LOG_MISSING>(op);
+ case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY:
+ return can_discard_replica_op<
+ MOSDPGUpdateLogMissingReply, MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY>(op);
case MSG_OSD_PG_SCAN:
return can_discard_scan(op);
return !have_same_or_newer_map(
cur_epoch,
static_cast<MOSDRepScrub*>(op->get_req())->map_epoch);
+
+ case MSG_OSD_PG_UPDATE_LOG_MISSING:
+ return !have_same_or_newer_map(
+ cur_epoch,
+ static_cast<MOSDPGUpdateLogMissing*>(op->get_req())->map_epoch);
+
+ case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY:
+ return !have_same_or_newer_map(
+ cur_epoch,
+ static_cast<MOSDPGUpdateLogMissingReply*>(op->get_req())->map_epoch);
}
assert(0);
return false;
#include "messages/MOSDPGPush.h"
#include "messages/MOSDPGPull.h"
#include "messages/MOSDPGPushReply.h"
+#include "messages/MOSDPGUpdateLogMissing.h"
+#include "messages/MOSDPGUpdateLogMissingReply.h"
#include "Watch.h"
replica_scrub(op, handle);
break;
+ case MSG_OSD_PG_UPDATE_LOG_MISSING:
+ do_update_log_missing(op);
+ break;
+
+ case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY:
+ do_update_log_missing_reply(op);
+ break;
+
default:
assert(0 == "bad message type in do_request");
}
}
};
+void ReplicatedPG::do_update_log_missing(OpRequestRef &op)
+{
+}
+
+void ReplicatedPG::do_update_log_missing_reply(OpRequestRef &op)
+{
+}
+
/* Mark all unfound objects as lost.
*/
void ReplicatedPG::mark_all_unfound_lost(int what)
ObjectContextRef mark_object_lost(ObjectStore::Transaction *t,
const hobject_t& oid, eversion_t version,
utime_t mtime, int what);
+
+ void do_update_log_missing(
+ OpRequestRef &op);
+
+ void do_update_log_missing_reply(
+ OpRequestRef &op);
void _finish_mark_all_unfound_lost(list<ObjectContextRef>& obcs);
void on_role_change();