summaryrefslogtreecommitdiff
path: root/cmds-fi-usage.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2015-11-02 18:32:04 +0100
committerDavid Sterba <dsterba@suse.com>2015-11-02 18:39:41 +0100
commit5205097bacbc64a7590d3139430b456bedf57de2 (patch)
treec309386ac0a0d2b3cee2847c9f91747ee4b9960d /cmds-fi-usage.c
parenta0c78dca8fc606da1467774ef6f9f33cea6d62ff (diff)
downloadbtrfs-progs-5205097bacbc64a7590d3139430b456bedf57de2.tar.gz
btrfs-progs: fi usage: cleanup, print header in one go
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'cmds-fi-usage.c')
-rw-r--r--cmds-fi-usage.c21
1 files changed, 5 insertions, 16 deletions
diff --git a/cmds-fi-usage.c b/cmds-fi-usage.c
index a5a4936..65c16b8 100644
--- a/cmds-fi-usage.c
+++ b/cmds-fi-usage.c
@@ -643,30 +643,19 @@ static void _cmd_filesystem_usage_tabular(unsigned unit_mode,
/* header */
for (i = 0, col = 1; i < sargs->total_spaces; i++) {
- const char *description;
u64 flags = sargs->spaces[i].flags;
if (flags & BTRFS_SPACE_INFO_GLOBAL_RSV)
continue;
- description = btrfs_group_type_str(flags);
-
- table_printf(matrix, col++, 0, "<%s", description);
+ table_printf(matrix, col, 0, "<%s",
+ btrfs_group_type_str(flags));
+ table_printf(matrix, col, 1, "<%s",
+ btrfs_group_profile_str(flags));
+ col++;
}
unallocated_col = col;
- for (i = 0, col = 1; i < sargs->total_spaces; i++) {
- const char *r_mode;
- u64 flags = sargs->spaces[i].flags;
-
- if (flags & BTRFS_SPACE_INFO_GLOBAL_RSV)
- continue;
-
- r_mode = btrfs_group_profile_str(flags);
-
- table_printf(matrix, col++, 1, "<%s", r_mode);
- }
-
table_printf(matrix, unallocated_col, 1, "<Unallocated");
/* body */