diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2021-11-13 17:44:13 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2022-10-03 22:51:36 -0400 |
commit | 795a7861e2d5d5843b49b496cb34592a2cb53c5a (patch) | |
tree | 57454308cf9d7390039eec80bd0d22982f732125 | |
parent | 789f74e42b3cc2237360770778f1fc14d93f2dd8 (diff) |
bcachefs: Improve bch2_reflink_p_to_text()
.to_text methods generally ought to print all the value fields.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r-- | fs/bcachefs/reflink.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/bcachefs/reflink.c b/fs/bcachefs/reflink.c index 22230f82b8b9..8dcac7815c9f 100644 --- a/fs/bcachefs/reflink.c +++ b/fs/bcachefs/reflink.c @@ -44,7 +44,10 @@ void bch2_reflink_p_to_text(struct printbuf *out, struct bch_fs *c, { struct bkey_s_c_reflink_p p = bkey_s_c_to_reflink_p(k); - pr_buf(out, "idx %llu", le64_to_cpu(p.v->idx)); + pr_buf(out, "idx %llu front_pad %u back_pad %u", + le64_to_cpu(p.v->idx), + le32_to_cpu(p.v->front_pad), + le32_to_cpu(p.v->back_pad)); } bool bch2_reflink_p_merge(struct bch_fs *c, struct bkey_s _l, struct bkey_s_c _r) |