blob: e8f8c60518fe7d02590210c31fdbad3068ee3e84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
graphic: 0.817
device: 0.791
instruction: 0.701
semantic: 0.694
mistranslation: 0.623
socket: 0.613
network: 0.582
boot: 0.572
vnc: 0.322
KVM: 0.247
assembly: 0.246
other: 0.211
Using -overcommit flag leads to qemu crashing
Running the following leads to a qemu crash on startup:
jwhite@laptop:~/os$ qemu-system-i386 -overcommit cpu-pm=on
qemu-system-i386: -overcommit cpu-pm=on: There is no option group 'overcommit'
Segmentation fault (core dumped)
jwhite@laptop:~/os$
This fixes the issue:
--- ../tmp/qemu-3.0.0/vl.c 2018-08-14 12:10:35.000000000 -0700
+++ vl.c 2018-08-29 14:59:30.151554120 -0700
@@ -2987,6 +2987,7 @@
qemu_add_opts(&qemu_object_opts);
qemu_add_opts(&qemu_tpmdev_opts);
qemu_add_opts(&qemu_realtime_opts);
+ qemu_add_opts(&qemu_overcommit_opts);
qemu_add_opts(&qemu_msg_opts);
qemu_add_opts(&qemu_name_opts);
qemu_add_opts(&qemu_numa_opts);
It seems to be fixed already:
https://git.qemu.org/?p=qemu.git;a=commitdiff;h=1fdd4748711a62d863744
|