75b07eca3e
by importing the upstream release as patches. replace user namespace patch with version which has been applied usptream.
67 lines
2.9 KiB
Diff
67 lines
2.9 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
|
|
Date: Thu, 1 Mar 2018 01:54:53 +0900
|
|
Subject: [PATCH] Fix zpool(8) list example to match actual format
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
a05dfd00 (Illumos 5147) has swapped FRAG and EXPANDSZ,
|
|
so it's natural to modify these examples.
|
|
|
|
# zpool list | head -1
|
|
NAME SIZE ALLOC FREE EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
|
|
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
|
|
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@osnexus.com>
|
|
Closes #7244
|
|
(cherry picked from commit bcaba38e428be8dc90564d15c7e13f154c535edd)
|
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
|
---
|
|
man/man8/zpool.8 | 20 ++++++++++----------
|
|
1 file changed, 10 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/man/man8/zpool.8 b/man/man8/zpool.8
|
|
index 22579101a..7c99f5868 100644
|
|
--- a/man/man8/zpool.8
|
|
+++ b/man/man8/zpool.8
|
|
@@ -2087,10 +2087,10 @@ is faulted due to a missing device.
|
|
The results from this command are similar to the following:
|
|
.Bd -literal
|
|
# zpool list
|
|
-NAME SIZE ALLOC FREE FRAG EXPANDSZ CAP DEDUP HEALTH ALTROOT
|
|
-rpool 19.9G 8.43G 11.4G 33% - 42% 1.00x ONLINE -
|
|
-tank 61.5G 20.0G 41.5G 48% - 32% 1.00x ONLINE -
|
|
-zion - - - - - - - FAULTED -
|
|
+NAME SIZE ALLOC FREE EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
|
|
+rpool 19.9G 8.43G 11.4G - 33% 42% 1.00x ONLINE -
|
|
+tank 61.5G 20.0G 41.5G - 48% 32% 1.00x ONLINE -
|
|
+zion - - - - - - - FAULTED -
|
|
.Ed
|
|
.It Sy Example 7 No Destroying a ZFS Storage Pool
|
|
The following command destroys the pool
|
|
@@ -2215,12 +2215,12 @@ In this example, the pool will not be able to utilize this extra capacity until
|
|
all the devices under the raidz vdev have been expanded.
|
|
.Bd -literal
|
|
# zpool list -v data
|
|
-NAME SIZE ALLOC FREE FRAG EXPANDSZ CAP DEDUP HEALTH ALTROOT
|
|
-data 23.9G 14.6G 9.30G 48% - 61% 1.00x ONLINE -
|
|
- raidz1 23.9G 14.6G 9.30G 48% -
|
|
- sda - - - - -
|
|
- sdb - - - - 10G
|
|
- sdc - - - - -
|
|
+NAME SIZE ALLOC FREE EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
|
|
+data 23.9G 14.6G 9.30G - 48% 61% 1.00x ONLINE -
|
|
+ raidz1 23.9G 14.6G 9.30G - 48%
|
|
+ sda - - - - -
|
|
+ sdb - - - 10G -
|
|
+ sdc - - - - -
|
|
.Ed
|
|
.It Sy Example 16 No Adding output columns
|
|
Additional columns can be added to the
|
|
--
|
|
2.14.2
|
|
|