Blame SOURCES/0021-RHEL-8-v2v-rhv-upload-Remove-restriction-on-oa-spars.patch

62f9b7
From 4bd92b1fc4f830529b439c4a4e09281fcd9eab78 Mon Sep 17 00:00:00 2001
62f9b7
From: "Richard W.M. Jones" <rjones@redhat.com>
62f9b7
Date: Mon, 14 May 2018 10:16:58 +0100
62f9b7
Subject: [PATCH] RHEL 8: v2v: rhv-upload: Remove restriction on -oa sparse.
62f9b7
62f9b7
See: https://bugzilla.redhat.com/show_bug.cgi?id=1565681
62f9b7
and the v2v-devel private thread "Do we already support migration using FC?"
62f9b7
---
62f9b7
 docs/virt-v2v-output-rhv.pod |  8 +-------
62f9b7
 v2v/output_rhv_upload.ml     | 10 +---------
62f9b7
 v2v/rhv-upload-plugin.py     |  4 +---
62f9b7
 3 files changed, 3 insertions(+), 19 deletions(-)
62f9b7
62f9b7
diff --git a/docs/virt-v2v-output-rhv.pod b/docs/virt-v2v-output-rhv.pod
62f9b7
index 7c9b478a..36c3676f 100644
62f9b7
--- a/docs/virt-v2v-output-rhv.pod
62f9b7
+++ b/docs/virt-v2v-output-rhv.pod
62f9b7
@@ -5,7 +5,7 @@ virt-v2v-output-rhv - Using virt-v2v to convert guests to oVirt or RHV
62f9b7
 =head1 SYNOPSIS
62f9b7
 
62f9b7
  virt-v2v [-i* options] -o rhv-upload [-oc ENGINE_URL] -os STORAGE
62f9b7
-                        [-op PASSWORD] [-of raw]
62f9b7
+                        [-op PASSWORD]
62f9b7
                         [-oo rhv-cafile=FILE]
62f9b7
                         [-oo rhv-cluster=CLUSTER]
62f9b7
                         [-oo rhv-direct]
62f9b7
@@ -79,12 +79,6 @@ username is not specified then virt-v2v defaults to using
62f9b7
 C<admin@internal> which is the typical superuser account for oVirt
62f9b7
 instances.
62f9b7
 
62f9b7
-=item I<-of raw>
62f9b7
-
62f9b7
-Currently you must use I<-of raw> and you cannot use I<-oa preallocated>.
62f9b7
-
62f9b7
-These restrictions will be loosened in a future version.
62f9b7
-
62f9b7
 =item I<-op> F<password-file>
62f9b7
 
62f9b7
 A file containing a password to be used when connecting to the oVirt
62f9b7
diff --git a/v2v/output_rhv_upload.ml b/v2v/output_rhv_upload.ml
62f9b7
index 5c6c2611..81896e53 100644
62f9b7
--- a/v2v/output_rhv_upload.ml
62f9b7
+++ b/v2v/output_rhv_upload.ml
62f9b7
@@ -135,17 +135,10 @@ let error_unless_nbdkit_compiled_with_selinux config =
62f9b7
       error (f_"nbdkit was compiled without SELinux support.  You will have to recompile nbdkit with libselinux-devel installed, or else set SELinux to Permissive mode while doing the conversion.")
62f9b7
   )
62f9b7
 
62f9b7
-(* Output sparse must be sparse.  We may be able to
62f9b7
- * lift this limitation in future, but it requires changes on the
62f9b7
- * RHV side.  See TODO file for details.  XXX
62f9b7
- *)
62f9b7
+(* Output format must be raw. *)
62f9b7
 let error_current_limitation required_param =
62f9b7
   error (f_"rhv-upload: currently you must use ā€˜%sā€™.  This restriction will be loosened in a future version.") required_param
62f9b7
 
62f9b7
-let error_unless_output_alloc_sparse output_alloc =
62f9b7
-  if output_alloc <> Sparse then
62f9b7
-    error_current_limitation "-oa sparse"
62f9b7
-
62f9b7
 let json_optstring = function
62f9b7
   | Some s -> JSON.String s
62f9b7
   | None -> JSON.Null
62f9b7
@@ -247,7 +240,6 @@ object
62f9b7
     error_unless_nbdkit_min_version config;
62f9b7
     error_unless_nbdkit_python_plugin_working plugin_script;
62f9b7
     error_unless_nbdkit_compiled_with_selinux config;
62f9b7
-    error_unless_output_alloc_sparse output_alloc;
62f9b7
 
62f9b7
     (* Python code prechecks. *)
62f9b7
     let precheck_fn = tmpdir // "v2vprecheck.json" in
62f9b7
diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py
62f9b7
index d3e6260e..471102da 100644
62f9b7
--- a/v2v/rhv-upload-plugin.py
62f9b7
+++ b/v2v/rhv-upload-plugin.py
62f9b7
@@ -477,10 +477,8 @@ def create_disk(connection):
62f9b7
             # size, based on qemu-img measure of the overlay.
62f9b7
             initial_size=params['disk_size'],
62f9b7
             provisioned_size=params['disk_size'],
62f9b7
-            # XXX Ignores params['output_sparse'].
62f9b7
-            # Handling this properly will be complex, see:
62f9b7
             # https://www.redhat.com/archives/libguestfs/2018-March/msg00177.html
62f9b7
-            sparse=True,
62f9b7
+            sparse=params['output_sparse'],
62f9b7
             storage_domains=[
62f9b7
                 types.StorageDomain(
62f9b7
                     name=params['output_storage'],