33 lines
895 B
Diff
33 lines
895 B
Diff
From 5a441b820faa4e6e9e6fc80cccc813a3c333b6c2 Mon Sep 17 00:00:00 2001
|
|
From: Miroslav Rezanina <mrezanin@redhat.com>
|
|
Date: Thu, 18 Dec 2014 06:27:49 +0100
|
|
Subject: Use kvm by default
|
|
|
|
Bugzilla: 906185
|
|
|
|
RHEL uses kvm accelerator by default, if available.
|
|
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
---
|
|
accel/accel.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/accel/accel.c b/accel/accel.c
|
|
index 966b2d8..e8ca7bb 100644
|
|
--- a/accel/accel.c
|
|
+++ b/accel/accel.c
|
|
@@ -79,8 +79,8 @@ void configure_accelerator(MachineState *ms)
|
|
|
|
accel = qemu_opt_get(qemu_get_machine_opts(), "accel");
|
|
if (accel == NULL) {
|
|
- /* Use the default "accelerator", tcg */
|
|
- accel = "tcg";
|
|
+ /* RHEL uses kvm as the default accelerator, fallback to tcg */
|
|
+ accel = "kvm:tcg";
|
|
}
|
|
|
|
accel_list = g_strsplit(accel, ":", 0);
|
|
--
|
|
1.8.3.1
|
|
|