summaryrefslogtreecommitdiffstats
path: root/results/classifier/011/review/22219210
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/011/review/22219210')
-rw-r--r--results/classifier/011/review/2221921067
1 files changed, 67 insertions, 0 deletions
diff --git a/results/classifier/011/review/22219210 b/results/classifier/011/review/22219210
new file mode 100644
index 00000000..ccb8d5cf
--- /dev/null
+++ b/results/classifier/011/review/22219210
@@ -0,0 +1,67 @@
+device: 0.136
+other: 0.125
+semantic: 0.125
+graphic: 0.082
+PID: 0.068
+performance: 0.066
+files: 0.064
+socket: 0.063
+vnc: 0.059
+network: 0.057
+permissions: 0.052
+debug: 0.046
+boot: 0.031
+KVM: 0.024
+debug: 0.693
+network: 0.136
+PID: 0.029
+other: 0.023
+performance: 0.022
+device: 0.019
+socket: 0.018
+files: 0.017
+semantic: 0.009
+boot: 0.008
+graphic: 0.008
+KVM: 0.007
+permissions: 0.006
+vnc: 0.006
+
+[BUG][CPU hot-plug]CPU hot-plugs cause the qemu process to coredump
+
+Hello,Recently, when I was developing CPU hot-plugs under the loongarch
+architecture,
+I found that there was a problem with qemu cpu hot-plugs under x86
+architecture,
+which caused the qemu process coredump when repeatedly inserting and
+unplugging
+the CPU when the TCG was accelerated.
+
+
+The specific operation process is as follows:
+
+1.Use the following command to start the virtual machine
+
+qemu-system-x86_64 \
+-machine q35  \
+-cpu Broadwell-IBRS \
+-smp 1,maxcpus=4,sockets=4,cores=1,threads=1 \
+-m 4G \
+-drive file=~/anolis-8.8.qcow2  \
+-serial stdio   \
+-monitor telnet:localhost:4498,server,nowait
+
+
+2.Enter QEMU Monitor via telnet for repeated CPU insertion and unplugging
+
+telnet 127.0.0.1 4498
+(qemu) device_add
+Broadwell-IBRS-x86_64-cpu,socket-id=1,core-id=0,thread-id=0,id=cpu1
+(qemu) device_del cpu1
+(qemu) device_add
+Broadwell-IBRS-x86_64-cpu,socket-id=1,core-id=0,thread-id=0,id=cpu1
+3.You will notice that the QEMU process has a coredump
+
+# malloc(): unsorted double linked list corrupted
+Aborted (core dumped)
+