Displaying 3 results from an estimated 3 matches for "58f720ac3".
2017 Apr 05
1
Re: [PATCH 5/6] v2v: -o libvirt: Add virtio-rng, balloon and pvpanic to output XML (RHBZ#1438794).
...eate virtio-rng, a memory balloon
> device, and a pvpanic device, if the guest supports it.
> ---
> v2v/create_libvirt_xml.ml | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/v2v/create_libvirt_xml.ml b/v2v/create_libvirt_xml.ml
> index fc7196595..58f720ac3 100644
> --- a/v2v/create_libvirt_xml.ml
> +++ b/v2v/create_libvirt_xml.ml
> @@ -338,6 +338,25 @@ let create_libvirt_xml ?pool source target_buses guestcaps
> [] in
> append devices sound;
>
> + (* Miscellaneous KVM devices. *)
> + if guestcaps.gcaps_virtio_...
2017 Apr 05
0
[PATCH 5/6] v2v: -o libvirt: Add virtio-rng, balloon and pvpanic to output XML (RHBZ#1438794).
When outputting libvirt XML, create virtio-rng, a memory balloon
device, and a pvpanic device, if the guest supports it.
---
v2v/create_libvirt_xml.ml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/v2v/create_libvirt_xml.ml b/v2v/create_libvirt_xml.ml
index fc7196595..58f720ac3 100644
--- a/v2v/create_libvirt_xml.ml
+++ b/v2v/create_libvirt_xml.ml
@@ -338,6 +338,25 @@ let create_libvirt_xml ?pool source target_buses guestcaps
[] in
append devices sound;
+ (* Miscellaneous KVM devices. *)
+ if guestcaps.gcaps_virtio_rng then
+ push_back devices (
+...
2017 Apr 05
7
[PATCH 0/6] v2v: Add drivers for virtio-rng, balloon, pvpanic.
Yaniv pointed out in https://bugzilla.redhat.com/show_bug.cgi?id=1438794
that virt-v2v both doesn't install the virtio-rng driver for Windows,
and doesn't give the guest a virtio-rng PCI device either.
There are two problems here:
Firstly the Windows virtio-rng driver isn't included in the exploded
tree (/usr/share/virtio-win) so it doesn't get copied into the guest.
The solution