42 lines
1.1 KiB
Diff
42 lines
1.1 KiB
Diff
From 445df6a548c20d21c3275d91bcd96c6b0fde9c97 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>
|
|
|
|
Rebase notes (2.10.0)
|
|
- variable rename (upstream)
|
|
|
|
Rebase notes (2.2.0):
|
|
- Move code from vl.c to accel.c
|
|
|
|
(cherry picked from commit abcd662eb8e516ebe4a6b401e83a62f749491a15)
|
|
(cherry picked from commit eca6d5766d956c37e3f7f28d70903d357308c846)
|
|
---
|
|
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
|
|
|