[Libguestfs] [PATCH] ppc64le: Don't use -cpu parameter under any circumstances (RHBZ#1605071).

Richard W.M. Jones rjones at redhat.com
Tue Aug 28 11:59:37 UTC 2018


---
 lib/appliance-cpu.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/appliance-cpu.c b/lib/appliance-cpu.c
index a6c1b0faf..fa1bae3f9 100644
--- a/lib/appliance-cpu.c
+++ b/lib/appliance-cpu.c
@@ -76,6 +76,9 @@ guestfs_int_get_cpu_model (int kvm)
     return "host";
   else
     return "cortex-a57";
+#elif defined(__powerpc64__)
+  /* See discussion in https://bugzilla.redhat.com/show_bug.cgi?id=1605071 */
+  return NULL;
 #else
   /* On most architectures, it is faster to pass the CPU host model to
    * the appliance, allowing maximum speed for things like checksums
-- 
2.18.0




More information about the Libguestfs mailing list