53e83913af
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
28 lines
771 B
Diff
28 lines
771 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
|
Date: Wed, 9 Dec 2015 14:27:05 +0100
|
|
Subject: [PATCH] PVE: [Config] use kvm by default
|
|
|
|
---
|
|
accel/accel.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/accel/accel.c b/accel/accel.c
|
|
index 966b2d8f53..08aeadaef2 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";
|
|
+ /* Use the default "accelerator", kvm */
|
|
+ accel = "kvm";
|
|
}
|
|
|
|
accel_list = g_strsplit(accel, ":", 0);
|
|
--
|
|
2.11.0
|
|
|