summaryrefslogtreecommitdiffstats
path: root/mailinglist/output_launchpad/1789751
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-05-30 14:51:13 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-05-30 14:51:13 +0000
commit225caa38269323af1bfc2daadff5ec8bd930747f (patch)
treee0a5fefde9ee100ba6f32fb36de6707490e4164e /mailinglist/output_launchpad/1789751
parent904141bfb8d5385b75eb3b7afec1dcda89af65a7 (diff)
downloademulator-bug-study-225caa38269323af1bfc2daadff5ec8bd930747f.tar.gz
emulator-bug-study-225caa38269323af1bfc2daadff5ec8bd930747f.zip
add mailinglist scraper results
Diffstat (limited to 'mailinglist/output_launchpad/1789751')
-rw-r--r--mailinglist/output_launchpad/178975126
1 files changed, 26 insertions, 0 deletions
diff --git a/mailinglist/output_launchpad/1789751 b/mailinglist/output_launchpad/1789751
new file mode 100644
index 00000000..78b1bac3
--- /dev/null
+++ b/mailinglist/output_launchpad/1789751
@@ -0,0 +1,26 @@
+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
+