summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1789751
diff options
context:
space:
mode:
Diffstat (limited to 'results/scraper/launchpad-without-comments/1789751')
-rw-r--r--results/scraper/launchpad-without-comments/178975122
1 files changed, 22 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1789751 b/results/scraper/launchpad-without-comments/1789751
new file mode 100644
index 00000000..fafc7b35
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1789751
@@ -0,0 +1,22 @@
+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);
\ No newline at end of file