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

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