diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-04 21:20:13 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-04 21:20:13 +0000 |
| commit | 2773b5e236e2217a35a53dbc298757610c7bbbc6 (patch) | |
| tree | 07b1cfc6ccd3a8f2808ffac94e8a4488079787a6 /results/classifier/008/other/73660729 | |
| parent | 45cde517004371146f7533c59c8005b8b2629291 (diff) | |
| download | emulator-bug-study-2773b5e236e2217a35a53dbc298757610c7bbbc6.tar.gz emulator-bug-study-2773b5e236e2217a35a53dbc298757610c7bbbc6.zip | |
add new iteration
Diffstat (limited to 'results/classifier/008/other/73660729')
| -rw-r--r-- | results/classifier/008/other/73660729 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/results/classifier/008/other/73660729 b/results/classifier/008/other/73660729 new file mode 100644 index 00000000..28b0bbc2 --- /dev/null +++ b/results/classifier/008/other/73660729 @@ -0,0 +1,41 @@ +graphic: 0.858 +performance: 0.786 +semantic: 0.698 +device: 0.697 +files: 0.640 +other: 0.620 +network: 0.598 +debug: 0.580 +socket: 0.556 +PID: 0.549 +vnc: 0.467 +permissions: 0.403 +boot: 0.367 +KVM: 0.272 + +[BUG]The latest qemu crashed when I tested cxl + +I test cxl with the patch:[v11,0/2] arm/virt: + CXL support via pxb_cxl. +https://patchwork.kernel.org/project/cxl/cover/20220616141950.23374-1-Jonathan.Cameron@huawei.com/ +But the qemu crashed,and showing an error: +qemu-system-aarch64: ../hw/arm/virt.c:1735: virt_get_high_memmap_enabled: + Assertion `ARRAY_SIZE(extended_memmap) - VIRT_LOWMEMMAP_LAST == ARRAY_SIZE(enabled_array)' failed. +Then I modify the patch to fix the bug: +diff --git a/hw/arm/virt.c b/hw/arm/virt.c +index ea2413a0ba..3d4cee3491 100644 +--- a/hw/arm/virt.c ++++ b/hw/arm/virt.c +@@ -1710,6 +1730,7 @@ static inline bool *virt_get_high_memmap_enabled(VirtMachineState + *vms, +&vms->highmem_redists, +&vms->highmem_ecam, +&vms->highmem_mmio, ++ &vms->cxl_devices_state.is_enabled, +}; +Now qemu works good. +Could you tell me when the patch( +arm/virt: + CXL support via pxb_cxl +) will be merged into upstream? + |