mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 04:41:20 +00:00
docs: fix blockpull/blockcopy bandwidth Mbps -> MiB/s
The bandwidth units for blockpull and blockcopy are in Megabytes per Second, not Megabits per Second. Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
34b30de5f5
commit
5b7f5a049c
1
AUTHORS
1
AUTHORS
@ -259,6 +259,7 @@ Patches have also been contributed by:
|
||||
Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
|
||||
Thomas Woerner <twoerner@redhat.com>
|
||||
J.B. Joret <jb@linux.vnet.ibm.com>
|
||||
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
|
||||
|
||||
[....send patches to get your name here....]
|
||||
|
||||
|
@ -18344,7 +18344,7 @@ error:
|
||||
* virDomainBlockJobSetSpeed:
|
||||
* @dom: pointer to domain object
|
||||
* @disk: path to the block device, or device shorthand
|
||||
* @bandwidth: specify bandwidth limit in Mbps
|
||||
* @bandwidth: specify bandwidth limit in MiB/s
|
||||
* @flags: extra flags; not used yet, so callers should always pass 0
|
||||
*
|
||||
* Set the maximimum allowable bandwidth that a block job may consume. If
|
||||
@ -18402,7 +18402,7 @@ error:
|
||||
* virDomainBlockPull:
|
||||
* @dom: pointer to domain object
|
||||
* @disk: path to the block device, or device shorthand
|
||||
* @bandwidth: (optional) specify copy bandwidth limit in Mbps
|
||||
* @bandwidth: (optional) specify copy bandwidth limit in MiB/s
|
||||
* @flags: extra flags; not used yet, so callers should always pass 0
|
||||
*
|
||||
* Populate a disk image with data from its backing image. Once all data from
|
||||
@ -18419,7 +18419,7 @@ error:
|
||||
* can be found by calling virDomainGetXMLDesc() and inspecting
|
||||
* elements within //domain/devices/disk.
|
||||
*
|
||||
* The maximum bandwidth (in Mbps) that will be used to do the copy can be
|
||||
* The maximum bandwidth (in MiB/s) that will be used to do the copy can be
|
||||
* specified with the bandwidth parameter. If set to 0, libvirt will choose a
|
||||
* suitable default. Some hypervisors do not support this feature and will
|
||||
* return an error if bandwidth is not 0; in this case, it might still be
|
||||
@ -18475,7 +18475,7 @@ error:
|
||||
* @dom: pointer to domain object
|
||||
* @disk: path to the block device, or device shorthand
|
||||
* @base: path to backing file to keep, or NULL for no backing file
|
||||
* @bandwidth: (optional) specify copy bandwidth limit in Mbps
|
||||
* @bandwidth: (optional) specify copy bandwidth limit in MiB/s
|
||||
* @flags: bitwise-OR of virDomainBlockRebaseFlags
|
||||
*
|
||||
* Populate a disk image with data from its backing image chain, and
|
||||
@ -18535,7 +18535,7 @@ error:
|
||||
* can be found by calling virDomainGetXMLDesc() and inspecting
|
||||
* elements within //domain/devices/disk.
|
||||
*
|
||||
* The maximum bandwidth (in Mbps) that will be used to do the copy can be
|
||||
* The maximum bandwidth (in MiB/s) that will be used to do the copy can be
|
||||
* specified with the bandwidth parameter. If set to 0, libvirt will choose a
|
||||
* suitable default. Some hypervisors do not support this feature and will
|
||||
* return an error if bandwidth is not 0; in this case, it might still be
|
||||
|
@ -723,7 +723,7 @@ the command may continue to block a little while longer until the job
|
||||
is done cleaning up.
|
||||
|
||||
I<path> specifies fully-qualified path of the disk.
|
||||
I<bandwidth> specifies copying bandwidth limit in Mbps.
|
||||
I<bandwidth> specifies copying bandwidth limit in MiB/s.
|
||||
|
||||
=item B<blockpull> I<domain> I<path> [I<bandwidth>] [I<base>]
|
||||
[I<--wait> [I<--verbose>] [I<--timeout> B<seconds>] [I<--async]]
|
||||
@ -750,7 +750,7 @@ I<path> specifies fully-qualified path of the disk; it corresponds
|
||||
to a unique target name (<target dev='name'/>) or source file (<source
|
||||
file='name'/>) for one of the disk devices attached to I<domain> (see
|
||||
also B<domblklist> for listing these names).
|
||||
I<bandwidth> specifies copying bandwidth limit in Mbps.
|
||||
I<bandwidth> specifies copying bandwidth limit in MiB/s.
|
||||
|
||||
=item B<blkdeviotune> I<domain> I<device>
|
||||
[[I<--config>] [I<--live>] | [I<--current>]]
|
||||
|
Loading…
Reference in New Issue
Block a user