Displaying 5 results from an estimated 5 matches for "97bce58ad".
2018 May 09
1
[PATCH] v2v: update results of test-v2v-i-ova-snapshots for non-json
...disk notation, the disk will be the snapshot #2.
Fixes commit e5946165c8ea78e0e91c4cfdb5e793526cd638e1.
---
v2v/test-v2v-i-ova-snapshots.expected | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/v2v/test-v2v-i-ova-snapshots.expected b/v2v/test-v2v-i-ova-snapshots.expected
index 97bce58ad..a64843b35 100644
--- a/v2v/test-v2v-i-ova-snapshots.expected
+++ b/v2v/test-v2v-i-ova-snapshots.expected
@@ -13,7 +13,7 @@ hypervisor type: vmware
video:
sound:
disks:
- disk1.vmdk (vmdk) [scsi]
+ disk1.vmdk.000000002 (vmdk) [scsi]
removable media:
CD-ROM [ide] in slot...
2018 Jul 05
4
[PATCH] v2v: Preserve VM Generation ID (RHBZ#1598350).
...parse_libvirt_xml ?conn xml =
({
s_hypervisor = hypervisor;
s_name = name; s_orig_name = name;
+ s_genid = genid;
s_memory = memory;
s_vcpu = vcpu;
s_cpu_vendor = cpu_vendor;
diff --git a/v2v/test-v2v-i-ova-formats.expected b/v2v/test-v2v-i-ova-formats.expected
index 97bce58ad..697eaae51 100644
--- a/v2v/test-v2v-i-ova-formats.expected
+++ b/v2v/test-v2v-i-ova-formats.expected
@@ -2,6 +2,7 @@ Source guest information (--print-source option):
source name: 2K8R2EESP1_2_Medium
hypervisor type: vmware
+ VM genid:
memory: 1073741824 (bytes)
nr...
2018 Jul 05
0
Re: [PATCH] v2v: Preserve VM Generation ID (RHBZ#1598350).
...s_hypervisor = hypervisor;
> s_name = name; s_orig_name = name;
> + s_genid = genid;
> s_memory = memory;
> s_vcpu = vcpu;
> s_cpu_vendor = cpu_vendor;
> diff --git a/v2v/test-v2v-i-ova-formats.expected
> b/v2v/test-v2v-i-ova-formats.expected
> index 97bce58ad..697eaae51 100644
> --- a/v2v/test-v2v-i-ova-formats.expected
> +++ b/v2v/test-v2v-i-ova-formats.expected
> @@ -2,6 +2,7 @@ Source guest information (--print-source option):
>
> source name: 2K8R2EESP1_2_Medium
> hypervisor type: vmware
> + VM genid:
>...
2018 Apr 20
1
[PATCH] v2v: rework handling of CPU topology
...(** Parse an OVF file.
The returned tuple is
- [name, memory, vcpu, cpu_sockets, cpu_cores, firmware,
+ [name, memory, vcpu, cpu_topology, firmware,
disks, removables, nics] *)
diff --git a/v2v/test-v2v-i-ova-formats.expected b/v2v/test-v2v-i-ova-formats.expected
index f7b79d7bc..97bce58ad 100644
--- a/v2v/test-v2v-i-ova-formats.expected
+++ b/v2v/test-v2v-i-ova-formats.expected
@@ -6,7 +6,7 @@ hypervisor type: vmware
nr vCPUs: 1
CPU vendor:
CPU model:
- CPU topology: sockets: - cores/socket: - threads/core: -
+ CPU topology:
CPU features:
fir...
2018 Apr 25
9
[PATCH v2 0/9] v2v: -i ova: Handle OVAs containing snapshots.
https://bugzilla.redhat.com/show_bug.cgi?id=1570407
This turned into quite an in-depth refactoring of how we handle OVAs.
It also fixes a potential security issue.
Rich.