mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
457f1864b5
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> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
16 lines
441 B
C
16 lines
441 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2007 Oracle. All rights reserved.
|
|
*/
|
|
|
|
#ifndef BTRFS_PRINT_TREE_H
|
|
#define BTRFS_PRINT_TREE_H
|
|
|
|
/* Buffer size to contain tree name and possibly additional data (offset) */
|
|
#define BTRFS_ROOT_NAME_BUF_LEN 48
|
|
|
|
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);
|
|
|
|
#endif
|