From e8eb7c001d21ef8a79e66caade8473ec2fabf0b0 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Mon, 2 Feb 2015 16:10:10 +0100 Subject: [PATCH] btrfs-progs: mkfs, move uuid to the end of device summary Signed-off-by: David Sterba --- mkfs.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mkfs.c b/mkfs.c index 6cff69f4..e4395a02 100644 --- a/mkfs.c +++ b/mkfs.c @@ -1145,16 +1145,16 @@ static void list_all_devices(struct btrfs_root *root) number_of_devices++; printf(" Number of devices:\t%d\n", number_of_devices); - printf(" UUID ID SIZE PATH\n"); - printf(" ------------------------------------ -- --------- -----------\n"); + printf(" ID SIZE PATH UUID\n"); + printf(" --- ---------- ------------ ------------------------------------\n"); list_for_each_entry_reverse(device, &fs_devices->devices, dev_list) { char dev_uuid[BTRFS_UUID_UNPARSED_SIZE]; uuid_unparse(device->uuid, dev_uuid); - printf(" %s %3llu %10s %s\n", - dev_uuid, device->devid, + printf(" %3llu %10s %12s %s\n", + device->devid, pretty_size(device->total_bytes), - device->name); + device->name, dev_uuid); total_block_count += device->total_bytes; }