]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/pve/0005-use-kvm-by-default.patch
adding 2.5 pve patches and left-over extra fixes
[pve-qemu-kvm.git] / debian / patches / pve / 0005-use-kvm-by-default.patch
1 From d6e2e550fee6c0c3468585c4885237a080468ecf 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 05/41] use kvm by default
5
6 ---
7 accel.c | 4 ++--
8 1 file changed, 2 insertions(+), 2 deletions(-)
9
10 diff --git a/accel.c b/accel.c
11 index 74e41da..66e2e58 100644
12 --- a/accel.c
13 +++ b/accel.c
14 @@ -87,8 +87,8 @@ int configure_accelerator(MachineState *ms)
15
16 p = qemu_opt_get(qemu_get_machine_opts(), "accel");
17 if (p == NULL) {
18 - /* Use the default "accelerator", tcg */
19 - p = "tcg";
20 + /* Use the default "accelerator", kvm */
21 + p = "kvm";
22 }
23
24 while (!accel_initialised && *p != '\0') {
25 --
26 2.1.4
27