void ECBackend::ReadOp::dump(Formatter *f) const
{
- f->dump_stream("tid") << tid;
+ f->dump_unsigned("tid", tid);
if (op && op->get_req()) {
f->dump_stream("op") << *(op->get_req());
}
void ECSubWrite::dump(Formatter *f) const
{
- f->dump_stream("tid") << tid;
+ f->dump_unsigned("tid", tid);
f->dump_stream("reqid") << reqid;
f->dump_stream("at_version") << at_version;
f->dump_stream("trim_to") << trim_to;
void ECSubWriteReply::dump(Formatter *f) const
{
- f->dump_stream("tid") << tid;
+ f->dump_unsigned("tid", tid);
f->dump_stream("last_complete") << last_complete;
f->dump_stream("committed") << committed;
f->dump_stream("applied") << applied;
void ECSubRead::dump(Formatter *f) const
{
f->dump_stream("from") << from;
- f->dump_stream("tid") << tid;
+ f->dump_unsigned("tid", tid);
f->open_array_section("objects");
for (map<hobject_t, list<pair<uint64_t, uint64_t> > >::const_iterator i =
to_read.begin();
void ECSubReadReply::dump(Formatter *f) const
{
f->dump_stream("from") << from;
- f->dump_stream("tid") << tid;
+ f->dump_unsigned("tid", tid);
f->open_array_section("buffers_read");
for (map<hobject_t, list<pair<uint64_t, bufferlist> > >::const_iterator i =
buffers_read.begin();
stringstream client_name;
client_name << m->get_orig_source();
f->dump_string("client", client_name.str());
- f->dump_int("tid", m->get_tid());
+ f->dump_unsigned("tid", m->get_tid());
f->close_section(); // client_info
}
{