Displaying 3 results from an estimated 3 matches for "cfa5474".
2015 Oct 13
2
[PATCH v2 4/4] v2v: reuse main guestfs for virtio win drivers iso
...ions
- add missing and remove excessive parentheses
- preserve support for backends with no hot-add capability
v2v/convert_windows.ml | 38 +++++++++++++++++++++++++++++---------
1 file changed, 29 insertions(+), 9 deletions(-)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index cfa5474..5fd8bb6 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -294,13 +294,25 @@ echo uninstalling Xen PV driver
)
else if is_regular_file virtio_win then (
try
- let g2 = new Guestfs.guestfs () in
- if trace () then g2#set_trace true;
- if verbo...
2015 Oct 13
2
[PATCH v2 2/4] v2v: copy virtio drivers without guestfs handle leak
...3
- updated usage of string functions
v2v/convert_windows.ml | 78 +++++++++++-------
v2v/utils.ml | 212 +++++++++++++++----------------------------------
2 files changed, 113 insertions(+), 177 deletions(-)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 55213aa..cfa5474 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -273,35 +273,55 @@ echo uninstalling Xen PV driver
and copy_virtio_drivers driverdir =
(* Copy the matching drivers to the driverdir. *)
-
- let drivers = find_virtio_win_drivers virtio_win in
-
- (* Filter out only...
2015 Aug 10
15
[PATCH 0/4] v2v: simplify driver copying from virtio-win iso
Libguestfs supports passing an ISO image as a source of virtio windows
drivers to v2v.
That support, however, looks too heavy-weight: in order to access those
drivers, a separate guestfs handle is created (and thus a new emulator
process is started), which runs until v2v completes.
This series attempts to make it simpler and lighter-weight, by making
the relevant code more local, and by