]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: fix osd$foo typos
authorSage Weil <sage.weil@dreamhost.com>
Mon, 9 May 2011 22:36:39 +0000 (15:36 -0700)
committerSage Weil <sage.weil@dreamhost.com>
Mon, 9 May 2011 23:01:49 +0000 (16:01 -0700)
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
src/osd/PG.cc

index 3c3c2f3a7367ebeaea02fe905066a961e159d729..39144be858a32a9dcd963b6aad94d04e6d5258fb 100644 (file)
@@ -980,7 +980,7 @@ bool PG::prior_set_affected(PgPriorSet &prior, const OSDMap *osdmap) const
 
     // did someone in the prior set go down?
     if (osdmap->is_down(o) && prior.down.count(o) == 0) {
-      dout(10) << "prior_set_affected: osd" << osd << " now down" << dendl;
+      dout(10) << "prior_set_affected: osd" << o << " now down" << dendl;
       return true;
     }
 
@@ -3870,7 +3870,7 @@ PG::RecoveryState::Primary::react(const BacklogComplete&) {
 
 boost::statechart::result 
 PG::RecoveryState::Primary::react(const MNotifyRec& notevt) {
-  dout(7) << "handle_pg_notify from " << notevt.from << dendl;
+  dout(7) << "handle_pg_notify from osd" << notevt.from << dendl;
   PG *pg = context< RecoveryMachine >().pg;
   if (pg->peer_info.count(notevt.from) &&
       pg->peer_info[notevt.from].last_update == notevt.info.last_update) {