summaryrefslogtreecommitdiff
path: root/fs/btrfs/print-tree.h
diff options
context:
space:
mode:
authorJosef Bacik <josef@toxicpanda.com>2020-12-16 19:18:44 +0300
committerDavid Sterba <dsterba@suse.com>2021-01-07 19:25:05 +0300
commit71008734d27f2276fcef23a5e546d358430f2d52 (patch)
tree586f1c1abd338127c95b8ff22d92122e3c8864ec /fs/btrfs/print-tree.h
parenta8cc263eb58ca133617662a5a5e07131d0ebf299 (diff)
downloadlinux-71008734d27f2276fcef23a5e546d358430f2d52.tar.xz
btrfs: print the actual offset in btrfs_root_name
We're supposed to print the root_key.offset in btrfs_root_name in the case of a reloc root, not the objectid. Fix this helper to take the key so we have access to the offset when we need it. Fixes: 457f1864b569 ("btrfs: pretty print leaked root name") Reviewed-by: Qu Wenruo <wqu@suse.com> Reviewed-by: Nikolay Borisov <nborisov@suse.com> Signed-off-by: Josef Bacik <josef@toxicpanda.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/print-tree.h')
-rw-r--r--fs/btrfs/print-tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/print-tree.h b/fs/btrfs/print-tree.h
index 78b99385a503..8c3e9319ec4e 100644
--- a/fs/btrfs/print-tree.h
+++ b/fs/btrfs/print-tree.h
@@ -11,6 +11,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, char *buf);
+const char *btrfs_root_name(const struct btrfs_key *key, char *buf);
#endif