6beb01c50d
- update to upstream 3.14.1 - mkfs: - fix TRIM detection - do not zero-out end of device unconditionally - no crash with --features option - fsck: - clear log tree in repair mode - check reloc roots - btrfs - reworked space reporting (bnc#873106) - btrfs fi usage - new command - btrfs dev usage - new command - btrfs fi df - enhanced output with GlobalReserve - Removed patches: * 0001-btrfs-progs-move-arg_strtou64-to-a-separate-file-for.patch - Added patches: * 0001-Btrfs-progs-fix-check-to-test-trim-support.patch * 0002-Btrfs-progs-fsck-fix-double-free-memory-crash.patch * 0003-Btrfs-progs-mkfs-Remove-zero_end-1-since-it-has-been.patch * 0004-btrfs-progs-fix-wrong-max-system-array-size-check-in.patch * 0005-btrfs-progs-move-arg_strtou64-to-a-separate-file-for.patch * 0006-Btrfs-progs-fsck-clear-out-log-tree-in-repair-mode.patch * 0007-Btrfs-progs-fsck-avoid-pinning-same-block-several-ti.patch * 0008-Btrfs-progs-fsck-add-ability-to-check-reloc-roots.patch * 0009-btrfs-progs-prevent-close_root-if-the-root-to-close-.patch * 0010-btrfs-progs-fix-mkfs.btrfs-segfault-with-features-op.patch * 0011-btrfs-progs-Enhance-the-command-btrfs-filesystem-df.patch * 0012-btrfs-progs-Add-helpers-functions-to-handle-the-prin.patch * 0013-btrfs-progs-Add-command-btrfs-filesystem-disk-usage.patch * 0014-btrfs-progs-Add-btrfs-device-disk-usage-command.patch * 0015-btrfs-progs-cleanup-dead-return-after-usage-for-fi-d.patch * 0016-btrfs-progs-Fix-memleak-in-get_raid56_used.patch * 0017-Btrfs-progs-fi-usage-free-memory-if-realloc-fails.patch * 0018-btrfs-progs-read-global-reserve-size-from-space-info.patch * 0019-btrfs-progs-add-original-df-and-rename-disk_usage-to.patch * 0020-btrfs-progs-move-device-usage-to-cmds-device-more-cl.patch * 0021-btrfs-progs-check-if-we-can-t-get-info-from-ioctls-d.patch * 0022-btrfs-progs-zero-out-structures-before-calling-ioctl.patch * 0023-btrfs-progs-print-B-for-bytes.patch * 0024-btrfs-progs-Print-more-info-about-device-sizes.patch * 0025-btrfs-progs-compare-unallocated-space-against-the-co.patch * 0026-btrfs-progs-add-section-of-overall-filesystem-usage.patch * 0027-btrfs-progs-cleanup-filesystem-device-usage-code.patch * 0028-btrfs-progs-extend-pretty-printers-with-unit-mode.patch * 0029-btrfs-progs-replace-df_pretty_sizes-with-pretty_size.patch * 0030-btrfs-progs-clean-up-return-codes-and-paths.patch * 0031-btrfs-progs-move-global-reserve-to-overall-summary.patch OBS-URL: https://build.opensuse.org/request/show/232435 OBS-URL: https://build.opensuse.org/package/show/filesystems/btrfsprogs?expand=0&rev=156
108 lines
3.1 KiB
Diff
108 lines
3.1 KiB
Diff
From d8ca04ddc42461c462e3b52031e1134f01c71663 Mon Sep 17 00:00:00 2001
|
|
From: David Sterba <dsterba@suse.cz>
|
|
Date: Fri, 25 Apr 2014 17:24:40 +0200
|
|
Subject: [PATCH 37/42] btrfs-progs: add section of overall filesystem usage
|
|
|
|
The 'fi usage' lacks an overall report, this used to be in the enhanced
|
|
df command. Add it back.
|
|
|
|
Sample:
|
|
Overall:
|
|
Device size: 35.00GiB
|
|
Device allocated: 8.07GiB
|
|
Device unallocated: 26.93GiB
|
|
Used: 1.12MiB
|
|
Free (Estimated): 17.57GiB (Max: 30.98GiB, min: 17.52GiB)
|
|
Data to device ratio: 50 %
|
|
...
|
|
|
|
Signed-off-by: David Sterba <dsterba@suse.cz>
|
|
---
|
|
cmds-fi-disk_usage.c | 25 +++++++++++++------------
|
|
1 file changed, 13 insertions(+), 12 deletions(-)
|
|
|
|
diff --git a/cmds-fi-disk_usage.c b/cmds-fi-disk_usage.c
|
|
index 0e93dc836f16..e17f04e31d35 100644
|
|
--- a/cmds-fi-disk_usage.c
|
|
+++ b/cmds-fi-disk_usage.c
|
|
@@ -302,8 +302,6 @@ static struct btrfs_ioctl_space_args *load_space_info(int fd, char *path)
|
|
return sargs;
|
|
}
|
|
|
|
-/* Not used, keep for later */
|
|
-#if 0
|
|
/*
|
|
* This function computes the space occuped by a *single* RAID5/RAID6 chunk.
|
|
* The computation is performed on the basis of the number of stripes
|
|
@@ -331,7 +329,6 @@ static int get_raid56_used(int fd, u64 *raid5_used, u64 *raid6_used)
|
|
free(info_ptr);
|
|
|
|
return 0;
|
|
-
|
|
}
|
|
|
|
static int _cmd_disk_free(int fd, char *path, int mode)
|
|
@@ -416,22 +413,24 @@ static int _cmd_disk_free(int fd, char *path, int mode)
|
|
else
|
|
width = 18;
|
|
|
|
- printf("Disk size:\t\t%*s\n", width,
|
|
+ printf("Overall:\n");
|
|
+
|
|
+ printf(" Device size:\t\t%*s\n", width,
|
|
df_pretty_sizes(total_disk, mode));
|
|
- printf("Disk allocated:\t\t%*s\n", width,
|
|
+ printf(" Device allocated:\t\t%*s\n", width,
|
|
df_pretty_sizes(total_chunks, mode));
|
|
- printf("Disk unallocated:\t%*s\n", width,
|
|
+ printf(" Device unallocated:\t\t%*s\n", width,
|
|
df_pretty_sizes(total_disk-total_chunks, mode));
|
|
- printf("Used:\t\t\t%*s\n", width,
|
|
+ printf(" Used:\t\t\t%*s\n", width,
|
|
df_pretty_sizes(total_used, mode));
|
|
- printf("Free (Estimated):\t%*s\t(",
|
|
+ printf(" Free (Estimated):\t\t%*s\t(",
|
|
width,
|
|
df_pretty_sizes((u64)(K*total_disk-total_used), mode));
|
|
printf("Max: %s, ",
|
|
df_pretty_sizes(total_disk-total_chunks+total_free, mode));
|
|
printf("min: %s)\n",
|
|
df_pretty_sizes((total_disk-total_chunks)/2+total_free, mode));
|
|
- printf("Data to disk ratio:\t%*.0f %%\n",
|
|
+ printf(" Data to device ratio:\t%*.0f %%\n",
|
|
width-2, K*100);
|
|
|
|
exit:
|
|
@@ -441,7 +440,6 @@ exit:
|
|
|
|
return ret;
|
|
}
|
|
-#endif
|
|
|
|
/*
|
|
* Helper to sort the device_info structure
|
|
@@ -826,8 +824,6 @@ int cmd_filesystem_usage(int argc, char **argv)
|
|
for (i = optind; i < argc ; i++) {
|
|
int r, fd;
|
|
DIR *dirstream = NULL;
|
|
- if (more_than_one)
|
|
- printf("\n");
|
|
|
|
fd = open_file_or_dir(argv[i], &dirstream);
|
|
if (fd < 0) {
|
|
@@ -835,6 +831,11 @@ int cmd_filesystem_usage(int argc, char **argv)
|
|
argv[1]);
|
|
return 12;
|
|
}
|
|
+ if (more_than_one)
|
|
+ printf("\n");
|
|
+
|
|
+ r = _cmd_disk_free(fd, argv[i], flags);
|
|
+ printf("\n");
|
|
r = _cmd_filesystem_usage(fd, argv[i], flags, tabular);
|
|
close_file_or_dir(fd, dirstream);
|
|
|
|
--
|
|
1.9.0
|
|
|