| 72 | // osd_info_t |
| 73 | |
| 74 | void osd_info_t::dump(Formatter *f) const |
| 75 | { |
| 76 | f->dump_int("last_clean_begin", last_clean_begin); |
| 77 | f->dump_int("last_clean_end", last_clean_end); |
| 78 | f->dump_int("up_from", up_from); |
| 79 | f->dump_int("up_thru", up_thru); |
| 80 | f->dump_int("down_at", down_at); |
| 81 | f->dump_int("lost_at", lost_at); |
| 82 | } |
| 83 | |
| 84 | void osd_info_t::encode(ceph::buffer::list& bl) const |
| 85 | { |
no test coverage detected