Commit d05db127 authored by Kent Overstreet's avatar Kent Overstreet

bcachefs: Print durability in member_to_text()

Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 7541787f
......@@ -259,6 +259,11 @@ static void member_to_text(struct printbuf *out,
prt_printf(out, "(none)");
prt_newline(out);
prt_str(out, "Durability:");
prt_tab(out);
prt_printf(out, "%llu", BCH_MEMBER_DURABILITY(&m));
prt_newline(out);
prt_printf(out, "Discard:");
prt_tab(out);
prt_printf(out, "%llu", BCH_MEMBER_DISCARD(&m));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment