diff options
author | Misono Tomohiro <misono.tomohiro@jp.fujitsu.com> | 2018-03-29 17:23:12 +0900 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-06-07 16:37:35 +0200 |
commit | 4aebb2588c3f3164eba5833ffaf4eb101a05abb2 (patch) | |
tree | e0a95db962f8d0622a83a9c8b7880cb9c2253af0 | |
parent | 781792707a258be9c5e7a8b018b5838d162a01c2 (diff) |
btrfs-progs: fi usage: change to output more info without root privilege
Although per device usage cannot be shown without root privilege,
per profile usage can be shown.
To achieve this, we just basically need to remove the check of nullness
of chunkinfo in print_filesystem_usage_by_chunk(), because other
functions except print_unused() properly handles chunkinfo by
chunkcount, which is 0 if chunkinfo is null.
As a result, "fi usage" always includes the information of "fi df".
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Tomohiro Misono <misono.tomohiro@jp.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r-- | cmds-fi-usage.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/cmds-fi-usage.c b/cmds-fi-usage.c index 23309d7e..b9a2b1c8 100644 --- a/cmds-fi-usage.c +++ b/cmds-fi-usage.c @@ -923,9 +923,11 @@ static void _cmd_filesystem_usage_linear(unsigned unit_mode, printf("\n"); } - printf("Unallocated:\n"); - print_unused(info_ptr, info_count, device_info_ptr, device_info_count, - unit_mode | UNITS_NEGATIVE); + if (info_count) { + printf("Unallocated:\n"); + print_unused(info_ptr, info_count, device_info_ptr, + device_info_count, unit_mode | UNITS_NEGATIVE); + } } static int print_filesystem_usage_by_chunk(int fd, @@ -936,9 +938,6 @@ static int print_filesystem_usage_by_chunk(int fd, struct btrfs_ioctl_space_args *sargs; int ret = 0; - if (!chunkinfo) - return 0; - sargs = load_space_info(fd, path); if (!sargs) { ret = 1; |