]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
bcachefs: Align the display format of `btrees/inodes/keys`
authorYouling Tang <tangyouling@kylinos.cn>
Thu, 18 Apr 2024 00:50:55 +0000 (08:50 +0800)
committerKent Overstreet <kent.overstreet@linux.dev>
Sun, 14 Jul 2024 23:00:12 +0000 (19:00 -0400)
Before patch:
```
 #cat btrees/inodes/keys
 u64s 17 type inode_v3 0:4096:U32_MAX len 0 ver 0:   mode=40755
   flags= (16300000)
   bi_size=0
```

After patch:
```
 #cat btrees/inodes/keys
 u64s 17 type inode_v3 0:4096:U32_MAX len 0 ver 0:
   mode=40755
   flags=(16300000)
   bi_size=0
```

Signed-off-by: Youling Tang <tangyouling@kylinos.cn>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/inode.c

index aafa79fa63514bfe99a79077ec6042faacfdb7c9..4fd8c736744adf405473b3f5baf9c3c91fd24a53 100644 (file)
@@ -534,12 +534,13 @@ fsck_err:
 static void __bch2_inode_unpacked_to_text(struct printbuf *out,
                                          struct bch_inode_unpacked *inode)
 {
+       prt_printf(out, "\n");
        printbuf_indent_add(out, 2);
        prt_printf(out, "mode=%o\n", inode->bi_mode);
 
        prt_str(out, "flags=");
        prt_bitflags(out, bch2_inode_flag_strs, inode->bi_flags & ((1U << 20) - 1));
-       prt_printf(out, " (%x)\n", inode->bi_flags);
+       prt_printf(out, "(%x)\n", inode->bi_flags);
 
        prt_printf(out, "journal_seq=%llu\n",   inode->bi_journal_seq);
        prt_printf(out, "bi_size=%llu\n",       inode->bi_size);