]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
Merge remote-tracking branch 'origin/next'
authorYehuda Sadeh <yehuda@inktank.com>
Fri, 6 Dec 2013 19:24:06 +0000 (11:24 -0800)
committerYehuda Sadeh <yehuda@inktank.com>
Fri, 6 Dec 2013 19:24:06 +0000 (11:24 -0800)
1  2 
src/common/config_opts.h
src/mon/MDSMonitor.cc
src/mon/MonmapMonitor.cc
src/mon/OSDMonitor.cc

Simple merge
Simple merge
Simple merge
index 47f1c82d3cb65668939e1ae82e37f92f2ee8702c,9b1631828a8a25fd38504e3d4e33bb307fd13f58..cf95c3fcc6b96329274f0ad5f0100553c0adf5a4
@@@ -2000,18 -1962,8 +2000,19 @@@ void OSDMonitor::dump_info(Formatter *f
    osdmap.dump(f);
    f->close_section();
  
 +  f->open_array_section("osd_metadata");
 +  for (int i=0; i<osdmap.get_max_osd(); ++i) {
 +    if (osdmap.exists(i)) {
 +      f->open_object_section("osd");
 +      f->dump_unsigned("id", i);
 +      dump_osd_metadata(i, f, NULL);
 +      f->close_section();
 +    }
 +  }
 +  f->close_section();
 +
    f->dump_unsigned("osdmap_first_committed", get_first_committed());
+   f->dump_unsigned("osdmap_last_committed", get_last_committed());
  
    f->open_object_section("crushmap");
    osdmap.crush->dump(f);