bcachefs: Print out name of bkey type

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet 2019-07-16 12:23:04 -04:00 committed by Kent Overstreet
parent 0c04f5eb0d
commit a4461c8a7f
2 changed files with 4 additions and 5 deletions

View File

@ -12,7 +12,7 @@
#include "quota.h"
#include "xattr.h"
const char * const bch_bkey_types[] = {
const char * const bch2_bkey_types[] = {
#define x(name, nr) #name,
BCH_BKEY_TYPES()
#undef x
@ -159,7 +159,8 @@ void bch2_bpos_to_text(struct printbuf *out, struct bpos pos)
void bch2_bkey_to_text(struct printbuf *out, const struct bkey *k)
{
pr_buf(out, "u64s %u type %u ", k->u64s, k->type);
pr_buf(out, "u64s %u type %s ", k->u64s,
bch2_bkey_types[k->type]);
bch2_bpos_to_text(out, k->p);
@ -174,8 +175,6 @@ void bch2_val_to_text(struct printbuf *out, struct bch_fs *c,
if (likely(ops->val_to_text))
ops->val_to_text(out, c, k);
else
pr_buf(out, " %s", bch_bkey_types[k.k->type]);
}
void bch2_bkey_val_to_text(struct printbuf *out, struct bch_fs *c,

View File

@ -9,7 +9,7 @@ struct btree;
struct bkey;
enum btree_node_type;
extern const char * const bch_bkey_types[];
extern const char * const bch2_bkey_types[];
enum merge_result {
BCH_MERGE_NOMERGE,