summaryrefslogtreecommitdiff
path: root/cmd_debug.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2021-02-02 14:26:28 -0500
committerKent Overstreet <kent.overstreet@gmail.com>2021-02-02 16:07:59 -0500
commit4064aa126e2c77b86d090cd8b7731d238e73ae85 (patch)
treec13339a6f28cd6354317d7d727681d5db698f907 /cmd_debug.c
parent7eef5f46ddbd9d5ae2152ee868b110da37279bb9 (diff)
Update bcachefs sources to 26409a8f75 bcachefs: Journal updates to dev usage
Diffstat (limited to 'cmd_debug.c')
-rw-r--r--cmd_debug.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/cmd_debug.c b/cmd_debug.c
index befd41f..c4dd24b 100644
--- a/cmd_debug.c
+++ b/cmd_debug.c
@@ -572,14 +572,10 @@ int cmd_list_journal(int argc, char *argv[])
printf("journal entry %8llu\n"
" version %8u\n"
" last seq %8llu\n"
- " read clock %8u\n"
- " write clock %8u\n"
,
le64_to_cpu(p->j.seq),
le32_to_cpu(p->j.version),
- le64_to_cpu(p->j.last_seq),
- le16_to_cpu(p->j.read_clock),
- le16_to_cpu(p->j.write_clock));
+ le64_to_cpu(p->j.last_seq));
for_each_jset_key(k, _n, entry, &p->j) {
char buf[200];