diff options
author | Josef Bacik <josef@toxicpanda.com> | 2020-12-16 17:18:44 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2021-01-07 17:25:05 +0100 |
commit | 71008734d27f2276fcef23a5e546d358430f2d52 (patch) | |
tree | 586f1c1abd338127c95b8ff22d92122e3c8864ec /fs/btrfs/print-tree.h | |
parent | btrfs: run delayed iputs when remounting RO to avoid leaking them (diff) | |
download | linux-71008734d27f2276fcef23a5e546d358430f2d52.tar.xz linux-71008734d27f2276fcef23a5e546d358430f2d52.zip |
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.h | 2 |
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 |