search for: a295172

Displaying 3 results from an estimated 3 matches for "a295172".

Did you mean: 295127
2015 Oct 21
1
[PATCH] v2v: move open_guestfs to Types
...ill be needed by other functions in Types; Utils uses Types, so this avoids a circular dependency. --- v2v/types.ml | 10 ++++++++++ v2v/types.mli | 5 +++++ v2v/v2v.ml | 11 ++--------- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/v2v/types.ml b/v2v/types.ml index cc417bc..a295172 100644 --- a/v2v/types.ml +++ b/v2v/types.ml @@ -18,6 +18,9 @@ open Printf +open Common_gettext.Gettext +open Common_utils + (* Types. See types.mli for documentation. *) type source = { @@ -379,6 +382,13 @@ let string_of_target_buses buses = string_of_target_bus_slots "ide"...
2015 Oct 21
2
[PATCH] v2v: use open_guestfs everywhere
...ize = - let g = new Guestfs.guestfs () in + let g = open_guestfs () in g#set_identifier "vdsm_disk_create"; (* For qcow2, override v2v-supplied compat option, because RHEL 6 * nodes cannot handle qcow2 v3 (RHBZ#1145582). diff --git a/v2v/types.ml b/v2v/types.ml index a295172..038d259 100644 --- a/v2v/types.ml +++ b/v2v/types.ml @@ -401,7 +401,7 @@ class virtual output = object method virtual supported_firmware : target_firmware list method check_target_firmware (_ : guestcaps) (_ : target_firmware) = () method check_target_free_space (_ : source) (_ : target l...
2015 Oct 21
0
Re: [PATCH] v2v: use open_guestfs everywhere
....guestfs () in > + let g = open_guestfs () in > g#set_identifier "vdsm_disk_create"; > (* For qcow2, override v2v-supplied compat option, because RHEL 6 > * nodes cannot handle qcow2 v3 (RHBZ#1145582). > diff --git a/v2v/types.ml b/v2v/types.ml > index a295172..038d259 100644 > --- a/v2v/types.ml > +++ b/v2v/types.ml > @@ -401,7 +401,7 @@ class virtual output = object > method virtual supported_firmware : target_firmware list > method check_target_firmware (_ : guestcaps) (_ : target_firmware) = () > method check_target_free_sp...