Some arguments are not described, this commit adds at least superficial information.
Signed-off-by: Aaron Karper <[email protected]> --- lib/hypervisor/hv_kvm/__init__.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/hypervisor/hv_kvm/__init__.py b/lib/hypervisor/hv_kvm/__init__.py index 747faf1..c8ece0d 100644 --- a/lib/hypervisor/hv_kvm/__init__.py +++ b/lib/hypervisor/hv_kvm/__init__.py @@ -1574,8 +1574,14 @@ class KVMHypervisor(hv_base.BaseHypervisor): def _ExecuteKVMRuntime(self, instance, kvm_runtime, kvmhelp, incoming=None): """Execute a KVM cmd, after completing it with some last minute data. + @type instance: L{Instance} object + @param instance: the VM this command acts upon + @type kvm_runtime: tuple of (list of str, list of L{objects.NIC} objects, + dict of hypervisor options, list of tuples (L{objects.Disk}, str, str) + @param kvm_runtime: (kvm command, NICs of the instance, options at startup + of the instance, [(disk, link_name, uri)..]) @type incoming: tuple of strings - @param incoming: (target_host_ip, port) + @param incoming: (target_host_ip, port) for migration. @type kvmhelp: string @param kvmhelp: output of kvm --help -- 2.1.0.rc2.206.gedb03e5
