From: Nikolay Borisov <nborisov@suse.com>
To: Josef Bacik <josef@toxicpanda.com>,
linux-btrfs@vger.kernel.org, kernel-team@fb.com
Subject: Re: [PATCH 2/2] btrfs: pretty print leaked root name
Date: Fri, 21 Aug 2020 10:35:38 +0300 [thread overview]
Message-ID: <d98bb04e-1bcf-80c7-26ae-e91f3ecfd818@suse.com> (raw)
In-Reply-To: <461693e5c015857e684878e99e5e65075bb97c13.1597953516.git.josef@toxicpanda.com>
On 20.08.20 г. 23:00 ч., Josef Bacik wrote:
> I'm a actual human being so am incapable of converting u64 to s64 in my
> head, so add a helper to get the pretty name of a root objectid and use
> that helper to spit out the name for any special roots for leaked roots,
> so I don't have to scratch my head and figure out which root I messed up
> the refs for.
>
> Signed-off-by: Josef Bacik <josef@toxicpanda.com>
> ---
> fs/btrfs/disk-io.c | 8 +++++---
> fs/btrfs/print-tree.c | 37 +++++++++++++++++++++++++++++++++++++
> fs/btrfs/print-tree.h | 1 +
> 3 files changed, 43 insertions(+), 3 deletions(-)
>
> diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
> index ac6d6fddd5f4..a7358e0f59de 100644
> --- a/fs/btrfs/disk-io.c
> +++ b/fs/btrfs/disk-io.c
> @@ -1506,11 +1506,13 @@ void btrfs_check_leaked_roots(struct btrfs_fs_info *fs_info)
> struct btrfs_root *root;
>
> while (!list_empty(&fs_info->allocated_roots)) {
> + const char *name = btrfs_root_name(root->root_key.objectid);
> +
> root = list_first_entry(&fs_info->allocated_roots,
> struct btrfs_root, leak_list);
> - btrfs_err(fs_info, "leaked root %llu-%llu refcount %d",
> - root->root_key.objectid, root->root_key.offset,
> - refcount_read(&root->refs));
> + btrfs_err(fs_info, "leaked root %s%lld-%llu refcount %d",
nit: Won't this string result in some rather awkward looking strings,
such as:
"leaked root ROOT_TREE<objectid>-<offset>..." i.e shouldn't the
(objectid,offset) pair be marked with parentheses?
> + name ? name : "", root->root_key.objectid,
> + root->root_key.offset, refcount_read(&root->refs));
> while (refcount_read(&root->refs) > 1)
> btrfs_put_root(root);
> btrfs_put_root(root);
> diff --git a/fs/btrfs/print-tree.c b/fs/btrfs/print-tree.c
> index 61f44e78e3c9..c633aec8973d 100644
> --- a/fs/btrfs/print-tree.c
> +++ b/fs/btrfs/print-tree.c
> @@ -7,6 +7,43 @@
> #include "disk-io.h"
> #include "print-tree.h"
>
> +struct name_map {
> + u64 id;
> + const char *name;
> +};
> +
> +static const struct name_map root_map[] = {
> + { BTRFS_ROOT_TREE_OBJECTID, "ROOT_TREE" },
> + { BTRFS_EXTENT_TREE_OBJECTID, "EXTENT_TREE" },
> + { BTRFS_CHUNK_TREE_OBJECTID, "CHUNK_TREE" },
> + { BTRFS_DEV_TREE_OBJECTID, "DEV_TREE" },
> + { BTRFS_FS_TREE_OBJECTID, "FS_TREE" },
> + { BTRFS_ROOT_TREE_DIR_OBJECTID, "ROOT_TREE_DIR" },
> + { BTRFS_CSUM_TREE_OBJECTID, "CSUM_TREE" },
> + { BTRFS_TREE_LOG_OBJECTID, "TREE_LOG" },
> + { BTRFS_QUOTA_TREE_OBJECTID, "QUOTA_TREE" },
> + { BTRFS_TREE_RELOC_OBJECTID, "TREE_RELOC" },
> + { BTRFS_UUID_TREE_OBJECTID, "UUID_TREE" },
> + { BTRFS_FREE_SPACE_TREE_OBJECTID, "FREE_SPACE_TREE" },
> + { BTRFS_DATA_RELOC_TREE_OBJECTID, "DATA_RELOC_TREE" },
> +};
> +
> +const char *btrfs_root_name(u64 objectid)
> +{
> + int i;
> +
> + if (objectid >= BTRFS_FIRST_FREE_OBJECTID &&
> + objectid <= BTRFS_LAST_FREE_OBJECTID)
> + return NULL;
> +
> + for (i = 0; i < ARRAY_SIZE(root_map); i++) {
> + if (root_map[i].id == objectid)
> + return root_map[i].name;
> + }
> +
> + return NULL;
> +}
> +
> static void print_chunk(struct extent_buffer *eb, struct btrfs_chunk *chunk)
> {
> int num_stripes = btrfs_chunk_num_stripes(eb, chunk);
> diff --git a/fs/btrfs/print-tree.h b/fs/btrfs/print-tree.h
> index e6bb38fd75ad..dffdfa495297 100644
> --- a/fs/btrfs/print-tree.h
> +++ b/fs/btrfs/print-tree.h
> @@ -8,5 +8,6 @@
>
> void btrfs_print_leaf(struct extent_buffer *l);
> void btrfs_print_tree(struct extent_buffer *c, bool follow);
> +const char *btrfs_root_name(u64 objectid);
>
> #endif
>
next prev parent reply other threads:[~2020-08-21 7:35 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-20 20:00 [PATCH 0/2][v2] Some leaked root fixes Josef Bacik
2020-08-20 20:00 ` [PATCH 1/2] btrfs: free fs roots on failed mount Josef Bacik
2020-08-21 7:31 ` Nikolay Borisov
2020-08-21 13:59 ` Josef Bacik
2020-08-21 14:07 ` Nikolay Borisov
2020-08-20 20:00 ` [PATCH 2/2] btrfs: pretty print leaked root name Josef Bacik
2020-08-21 7:35 ` Nikolay Borisov [this message]
2020-08-21 10:13 ` David Sterba
2020-08-21 10:25 ` Nikolay Borisov
2020-08-21 14:00 ` Josef Bacik
2020-08-24 11:30 ` David Sterba
2020-08-24 12:46 ` David Sterba
-- strict thread matches above, loose matches on Subject: below --
2020-09-03 18:29 [PATCH 0/2][v3] Some leaked root fixes Josef Bacik
2020-09-03 18:29 ` [PATCH 2/2] btrfs: pretty print leaked root name Josef Bacik
2020-09-07 12:28 ` David Sterba
2020-09-09 7:37 ` David Sterba
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d98bb04e-1bcf-80c7-26ae-e91f3ecfd818@suse.com \
--to=nborisov@suse.com \
--cc=josef@toxicpanda.com \
--cc=kernel-team@fb.com \
--cc=linux-btrfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox