mirror of
https://github.com/ceph/ceph
synced 2025-02-22 18:47:18 +00:00
osdc/Journaler.h: fix ceph_file_layout dump error in journaler::dump().
Signed-off-by: huangjun <hjwsm1989@gmail.com>
This commit is contained in:
parent
7b4ee4060a
commit
8a6d626c63
@ -164,11 +164,11 @@ public:
|
||||
f->open_object_section("layout");
|
||||
{
|
||||
f->dump_unsigned("stripe_unit", layout.fl_stripe_unit);
|
||||
f->dump_unsigned("stripe_count", layout.fl_stripe_unit);
|
||||
f->dump_unsigned("object_size", layout.fl_stripe_unit);
|
||||
f->dump_unsigned("cas_hash", layout.fl_stripe_unit);
|
||||
f->dump_unsigned("object_stripe_unit", layout.fl_stripe_unit);
|
||||
f->dump_unsigned("pg_pool", layout.fl_stripe_unit);
|
||||
f->dump_unsigned("stripe_count", layout.fl_stripe_count);
|
||||
f->dump_unsigned("object_size", layout.fl_object_size);
|
||||
f->dump_unsigned("cas_hash", layout.fl_cas_hash);
|
||||
f->dump_unsigned("object_stripe_unit", layout.fl_object_stripe_unit);
|
||||
f->dump_unsigned("pg_pool", layout.fl_pg_pool);
|
||||
}
|
||||
f->close_section(); // layout
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user