public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH kvm-unit-tests] arm64: TCG: Use max cpu type
@ 2022-06-03 11:13 Andrew Jones
  2022-06-03 12:21 ` Cornelia Huck
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Jones @ 2022-06-03 11:13 UTC (permalink / raw)
  To: kvm; +Cc: nikos.nikoleris, alex.bennee

The max cpu type is a better default cpu type for running tests
with TCG as it provides the maximum possible feature set. Also,
the max cpu type was introduced in QEMU v2.12, so we should be
safe to switch to it at this point.

There's also a 32-bit arm max cpu type, but we leave the default
as cortex-a15, because compilation requires we specify for which
processor we want to compile and there's no such thing as a 'max'.

Signed-off-by: Andrew Jones <drjones@redhat.com>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 5b7daac3c6e8..1474dde2c70d 100755
--- a/configure
+++ b/configure
@@ -223,7 +223,7 @@ fi
 [ -z "$processor" ] && processor="$arch"
 
 if [ "$processor" = "arm64" ]; then
-    processor="cortex-a57"
+    processor="max"
 elif [ "$processor" = "arm" ]; then
     processor="cortex-a15"
 fi
-- 
2.34.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-06-03 15:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-03 11:13 [PATCH kvm-unit-tests] arm64: TCG: Use max cpu type Andrew Jones
2022-06-03 12:21 ` Cornelia Huck
2022-06-03 13:15   ` Andrew Jones
2022-06-03 13:38     ` Cornelia Huck
2022-06-03 15:10       ` Andrew Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox