]> git.proxmox.com Git - pve-qemu.git/blob - debian/patches/pve/0004-use-kvm-by-default.patch
bump version to 2.11.1-1
[pve-qemu.git] / debian / patches / pve / 0004-use-kvm-by-default.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Wed, 9 Dec 2015 14:27:05 +0100
4 Subject: [PATCH] use kvm by default
5
6 ---
7 accel/accel.c | 4 ++--
8 1 file changed, 2 insertions(+), 2 deletions(-)
9
10 diff --git a/accel/accel.c b/accel/accel.c
11 index 8ae40e1e13..df21981026 100644
12 --- a/accel/accel.c
13 +++ b/accel/accel.c
14 @@ -79,8 +79,8 @@ void configure_accelerator(MachineState *ms)
15
16 accel = qemu_opt_get(qemu_get_machine_opts(), "accel");
17 if (accel == NULL) {
18 - /* Use the default "accelerator", tcg */
19 - accel = "tcg";
20 + /* Use the default "accelerator", kvm */
21 + accel = "kvm";
22 }
23
24 p = accel;
25 --
26 2.11.0
27