mrc0mmand / rpms / lvm2

Forked from rpms/lvm2 2 years ago
Clone

Blame SOURCES/lvm2-2_03_11-man-update-lvmvdo.patch

8ddfc2
 man/lvmvdo.7_main | 23 ++++++++++++-----------
8ddfc2
 1 file changed, 12 insertions(+), 11 deletions(-)
8ddfc2
8ddfc2
diff --git a/man/lvmvdo.7_main b/man/lvmvdo.7_main
8ddfc2
index 39dee39..474d6dd 100644
8ddfc2
--- a/man/lvmvdo.7_main
8ddfc2
+++ b/man/lvmvdo.7_main
8ddfc2
@@ -16,7 +16,7 @@ and also eliminates any blocks of all zeroes.
8ddfc2
 
8ddfc2
 With deduplication, instead of writing the same data more than once, VDO detects and records each
8ddfc2
 duplicate block as a reference to the original
8ddfc2
-block. VDO maintains a mapping from logical block addresses (used by the
8ddfc2
+block. VDO maintains a mapping from Logical Block Addresses (LBA) (used by the
8ddfc2
 storage layer above VDO) to physical block addresses (used by the storage
8ddfc2
 layer under VDO). After deduplication, multiple logical block addresses
8ddfc2
 may be mapped to the same physical block address; these are called shared
8ddfc2
@@ -59,7 +59,7 @@ VDOPoolLV
8ddfc2
 .br
8ddfc2
 VDO pool LV
8ddfc2
 .br
8ddfc2
-A pool for virtual VDOLV(s) with the size of used VDODataLV.
8ddfc2
+A pool for virtual VDOLV(s), which are the size of used VDODataLV.
8ddfc2
 .br
8ddfc2
 Only a single VDOLV is currently supported.
8ddfc2
 .TP
8ddfc2
@@ -72,7 +72,7 @@ Created from VDOPoolLV.
8ddfc2
 Appears blank after creation.
8ddfc2
 .SH VDO USAGE
8ddfc2
 The primary methods for using VDO with lvm2:
8ddfc2
-.SS 1. Create VDOPoolLV with VDOLV
8ddfc2
+.SS 1. Create a VDOPoolLV and a VDOLV
8ddfc2
 Create a VDOPoolLV that will hold VDO data, and a
8ddfc2
 virtual size VDOLV that the user can use. If you do not specify the virtual size,
8ddfc2
 then the VDOLV is created with the maximum size that
8ddfc2
@@ -97,9 +97,9 @@ operation.
8ddfc2
 # lvcreate --type vdo -n vdo0 -L 10G -V 100G vg/vdopool0
8ddfc2
 # mkfs.ext4 -E nodiscard /dev/vg/vdo0
8ddfc2
 .fi
8ddfc2
-.SS 2. Create VDOPoolLV from conversion of an existing LV into VDODataLV
8ddfc2
-Convert an already created or existing LV into a volume that can hold
8ddfc2
-VDO data and metadata (volume referenced by VDOPoolLV).
8ddfc2
+.SS 2. Convert an existing LV into VDOPoolLV
8ddfc2
+Convert an already created or existing LV into a VDOPoolLV, which is a volume
8ddfc2
+that can hold data and metadata.
8ddfc2
 You will be prompted to confirm such conversion because it \fBIRREVERSIBLY
8ddfc2
 DESTROYS\fP the content of such volume and the volume is immediately
8ddfc2
 formatted by \fBvdoformat\fP(8) as a VDO pool data volume. You can
8ddfc2
@@ -238,7 +238,8 @@ a long time.
8ddfc2
 .fi
8ddfc2
 .SS 8. Component activation of a VDODataLV
8ddfc2
 You can activate a VDODataLV separately as a component LV for examination
8ddfc2
-purposes. It activates the data LV in read-only mode, and the data LV cannot be modified.
8ddfc2
+purposes. The activation of the VDODataLV activates the data LV in read-only mode,
8ddfc2
+and the data LV cannot be modified.
8ddfc2
 If the VDODataLV is active as a component, any upper LV using this volume CANNOT
8ddfc2
 be activated. You have to deactivate the VDODataLV first to continue to use the VDOPoolLV.
8ddfc2
 
8ddfc2
@@ -280,7 +281,7 @@ it hits the processing of the VDO Pool LV layer.
8ddfc2
 
8ddfc2
 .I Example
8ddfc2
 .nf
8ddfc2
-# lvcreate -L 5G -V 10G -n vdo1 vg/vdopool
8ddfc2
+# lvcreate --type vdo -L 5G -V 10G -n vdo1 vg/vdopool
8ddfc2
 # lvcreate --type cache-pool -L 1G -n cachepool vg
8ddfc2
 # lvconvert --cache --cachepool vg/cachepool vg/vdo1
8ddfc2
 # lvconvert --uncache vg/vdo1
8ddfc2
@@ -292,13 +293,13 @@ and takes a considerable amount of time and CPU.
8ddfc2
 Unless you really need it, you should avoid using discard.
8ddfc2
 
8ddfc2
 When a block device is going to be rewritten,
8ddfc2
-block will be automatically reused for new data.
8ddfc2
-Discard is useful in situations when it is known that the given portion of a VDO LV
8ddfc2
+its blocks will be automatically reused for new data.
8ddfc2
+Discard is useful in situations when user knows that the given portion of a VDO LV
8ddfc2
 is not going to be used and the discarded space can be used for block
8ddfc2
 provisioning in other regions of the VDO LV.
8ddfc2
 For the same reason, you should avoid using mkfs with discard for
8ddfc2
 a freshly created VDO LV to save a lot of time that this operation would
8ddfc2
-take otherwise as device after create empty.
8ddfc2
+take otherwise as device is already expected to be empty.
8ddfc2
 .SS 6. Memory usage
8ddfc2
 The VDO target requires 370 MiB of RAM plus an additional 268 MiB
8ddfc2
 per each 1 TiB of physical storage managed by the volume.