summary refs log tree commit diff stats
path: root/results/classifier/118/virtual/1780928
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/virtual/1780928
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloademulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
emulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/virtual/1780928')
-rw-r--r--results/classifier/118/virtual/178092887
1 files changed, 87 insertions, 0 deletions
diff --git a/results/classifier/118/virtual/1780928 b/results/classifier/118/virtual/1780928
new file mode 100644
index 00000000..f70b4499
--- /dev/null
+++ b/results/classifier/118/virtual/1780928
@@ -0,0 +1,87 @@
+virtual: 0.895
+debug: 0.885
+permissions: 0.877
+semantic: 0.862
+register: 0.861
+architecture: 0.859
+assembly: 0.858
+graphic: 0.847
+performance: 0.827
+PID: 0.824
+network: 0.815
+files: 0.815
+device: 0.805
+user-level: 0.793
+hypervisor: 0.786
+socket: 0.768
+kernel: 0.755
+boot: 0.750
+arm: 0.744
+ppc: 0.739
+risc-v: 0.739
+VMM: 0.704
+KVM: 0.686
+vnc: 0.657
+peripherals: 0.573
+mistranslation: 0.566
+TCG: 0.514
+x86: 0.464
+i386: 0.298
+
+v2.12.0-2321-gb34181056c: vcpu hotplug crashes qemu-kvm with segfault
+
+vcpu hotplug crashes upstream qemu(v2.12.0-2321-gb34181056c), vcpu hotplug works fine in v2.12.0-rc4.
+
+Host: Power8, kernel: 4.18.0-rc2-00037-g6f0d349d922b
+Guest: Power8, kernel: 4.18.0-rc3-00183-gc42c12a90545 (base image: fedora27 ppc64le)
+
+/usr/share/avocado-plugins-vt/build/qemu/ppc64-softmmu/qemu-system-ppc64 -M pseries,accel=kvm,max-cpu-compat=power8 -m 8192 -device virtio-scsi-pci,id=scsi0,bus=pci.0,addr=0x2 -drive file=/var/lib/avocado/data/avocado-vt/images/jeos-27-ppc64le.qcow2,format=qcow2,if=none,id=drive1 -device scsi-hd,drive=drive1,bus=scsi0.0 -smp 1,cores=1,threads=1,sockets=1,maxcpus=8 -serial /dev/pts/0 -monitor stdio -vga none -nographic -kernel /home/kvmci/linux/vmlinux -append 'root=/dev/sda2 rw console=tty0 console=ttyS0,115200 init=/sbin/init initcall_debug' -nic user,model=virtio-net-pci 
+QEMU 2.12.50 monitor - type 'help' for more information
+(qemu) device_add host-spapr-cpu-core,id=core1,core-id=1
+Segmentation fault (core dumped)
+
+
+Guest initial cpu:
+# lscpu
+Architecture:        ppc64le
+Byte Order:          Little Endian
+CPU(s):              1
+On-line CPU(s) list: 0
+Thread(s) per core:  1
+Core(s) per socket:  1
+Socket(s):           1
+NUMA node(s):        1
+Model:               2.1 (pvr 004b 0201)
+Model name:          POWER8 (architected), altivec supported
+Hypervisor vendor:   KVM
+Virtualization type: para
+L1d cache:           64K
+L1i cache:           32K
+NUMA node0 CPU(s):   0
+
+Reverting the below comment makes CPU hotplug work again:
+
+commit a028dd423ee6dfd091a8c63028240832bf10f671
+
+    ppc/xics: introduce ICP DeviceRealize and DeviceReset handlers
+    
+    This changes the ICP realize and reset handlers in DeviceRealize and
+    DeviceReset handlers. parent handlers are now called from the
+    inheriting classes which is a cleaner object pattern.
+   
+
+
+The parent class (ie, TYPE_ICP) doesn't implement DeviceClass::reset(). It directly registers a reset handler with qemu_register_reset() instead. This is needed for cold plugged ICPs to be reset during machine reset since they're not SysBus devices.
+
+Cedric's patch missed that, but rather than reverting it, I'd rather go forward and:
+- introduce an abstract TYPE_ICP_BASE class that implements DeviceClass::reset()
+- have the current TYPE_ICP and all other specialized ICP types to derive from TYPE_ICP_BASE
+- have all specialized ICP types to register reset handlers with qemu_register_reset()
+
+This would match what was recently done with the ICS types.
+
+
+Fixed by:
+
+https://git.qemu.org/?p=qemu.git;a=commitdiff;h=b585395b655a6c1f9d9ebf1f0890e76d0708eed6
+