summaryrefslogtreecommitdiffstats
path: root/results/classifier/105/device/1960
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-03 12:04:13 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-03 12:04:13 +0000
commit256709d2eb3fd80d768a99964be5caa61effa2a0 (patch)
tree05b2352fba70923126836a64b6a0de43902e976a /results/classifier/105/device/1960
parent2ab14fa96a6c5484b5e4ba8337551bb8dcc79cc5 (diff)
downloademulator-bug-study-256709d2eb3fd80d768a99964be5caa61effa2a0.tar.gz
emulator-bug-study-256709d2eb3fd80d768a99964be5caa61effa2a0.zip
add new classifier result
Diffstat (limited to 'results/classifier/105/device/1960')
-rw-r--r--results/classifier/105/device/196035
1 files changed, 35 insertions, 0 deletions
diff --git a/results/classifier/105/device/1960 b/results/classifier/105/device/1960
new file mode 100644
index 00000000..a7d8433d
--- /dev/null
+++ b/results/classifier/105/device/1960
@@ -0,0 +1,35 @@
+device: 0.896
+graphic: 0.664
+instruction: 0.600
+network: 0.499
+socket: 0.457
+vnc: 0.356
+mistranslation: 0.344
+semantic: 0.316
+boot: 0.289
+assembly: 0.144
+other: 0.139
+KVM: 0.103
+
+Invalid pmu interrupt id in arm virt machine device-tree
+Description of problem:
+commit 9036e917f8357f4e5965ebfecdab5964d40e6a40 changes the definition of PPI interrupt ID, but forgets to modify the PMU device tree.
+The following patch can solve this problem:
+```
+diff --git a/hw/arm/virt.c b/hw/arm/virt.c
+index dd6bb80ce2..1d118974ee 100644
+--- a/hw/arm/virt.c
++++ b/hw/arm/virt.c
+@@ -663,7 +663,7 @@ static void fdt_add_pmu_nodes(const VirtMachineState *vms)
+ qemu_fdt_setprop(ms->fdt, "/pmu", "compatible",
+ compat, sizeof(compat));
+ qemu_fdt_setprop_cells(ms->fdt, "/pmu", "interrupts",
+- GIC_FDT_IRQ_TYPE_PPI, VIRTUAL_PMU_IRQ, irqflags);
++ GIC_FDT_IRQ_TYPE_PPI, INTID_TO_PPI(VIRTUAL_PMU_IRQ), irqflags);
+ }
+ }
+```
+Steps to reproduce:
+NA
+Additional information:
+