summaryrefslogtreecommitdiff
path: root/src/messages
diff options
context:
space:
mode:
authorSage Weil <sage.weil@dreamhost.com>2012-02-01 14:45:05 -0800
committerSage Weil <sage.weil@dreamhost.com>2012-02-01 15:02:10 -0800
commitac1fbd18774d43b64e5eb74d9569258c8b7fa3e4 (patch)
tree65d5b8b388e433121b5214cee8155403962576f4 /src/messages
parenta41679a6013ddedd77a2fce665055240f47c607d (diff)
downloadceph-ac1fbd18774d43b64e5eb74d9569258c8b7fa3e4.tar.gz
osd: PG::Missing -> pg_missing_t
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
Diffstat (limited to 'src/messages')
-rw-r--r--src/messages/MOSDPGInfo.h2
-rw-r--r--src/messages/MOSDPGLog.h2
-rw-r--r--src/messages/MOSDPGMissing.h4
-rw-r--r--src/messages/MOSDPGNotify.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/messages/MOSDPGInfo.h b/src/messages/MOSDPGInfo.h
index 7e8fb57274b..2dc6ebb9961 100644
--- a/src/messages/MOSDPGInfo.h
+++ b/src/messages/MOSDPGInfo.h
@@ -17,7 +17,7 @@
#define CEPH_MOSDPGINFO_H
#include "msg/Message.h"
-#include "osd/PG.h"
+#include "osd/osd_types.h"
class MOSDPGInfo : public Message {
epoch_t epoch;
diff --git a/src/messages/MOSDPGLog.h b/src/messages/MOSDPGLog.h
index e71a0000d45..41aca565c53 100644
--- a/src/messages/MOSDPGLog.h
+++ b/src/messages/MOSDPGLog.h
@@ -29,7 +29,7 @@ class MOSDPGLog : public Message {
public:
pg_info_t info;
pg_log_t log;
- PG::Missing missing;
+ pg_missing_t missing;
epoch_t get_epoch() { return epoch; }
pg_t get_pgid() { return info.pgid; }
diff --git a/src/messages/MOSDPGMissing.h b/src/messages/MOSDPGMissing.h
index 55debebf30f..20f61a4c720 100644
--- a/src/messages/MOSDPGMissing.h
+++ b/src/messages/MOSDPGMissing.h
@@ -23,13 +23,13 @@ class MOSDPGMissing : public Message {
public:
pg_info_t info;
- PG::Missing missing;
+ pg_missing_t missing;
epoch_t get_epoch() { return epoch; }
MOSDPGMissing() {}
MOSDPGMissing(version_t mv, const pg_info_t &info_,
- const PG::Missing &missing_)
+ const pg_missing_t &missing_)
: Message(MSG_OSD_PG_MISSING), epoch(mv), info(info_),
missing(missing_) { }
private:
diff --git a/src/messages/MOSDPGNotify.h b/src/messages/MOSDPGNotify.h
index 9c022d2443b..9c5306ff9c8 100644
--- a/src/messages/MOSDPGNotify.h
+++ b/src/messages/MOSDPGNotify.h
@@ -17,7 +17,7 @@
#include "msg/Message.h"
-#include "osd/PG.h"
+#include "osd/osd_types.h"
/*
* PGNotify - notify primary of my PGs and versions.