29 lines
920 B
Diff
29 lines
920 B
Diff
From 8be6817e95dbdf826a6065751b4a3a000c78071c Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Tue, 28 Aug 2018 12:59:06 +0100
|
|
Subject: [PATCH] ppc64le: Don't use -cpu parameter under any circumstances
|
|
(RHBZ#1605071).
|
|
|
|
(cherry picked from commit 56318f0b5ffc287fed71cc7cdd2007dff2b8fb17)
|
|
---
|
|
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.21.0
|
|
|