diff options
Diffstat (limited to 'results/classifier/017/architecture-arm/73660729')
| -rw-r--r-- | results/classifier/017/architecture-arm/73660729 | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/results/classifier/017/architecture-arm/73660729 b/results/classifier/017/architecture-arm/73660729 new file mode 100644 index 000000000..5fdabd2e3 --- /dev/null +++ b/results/classifier/017/architecture-arm/73660729 @@ -0,0 +1,90 @@ +arm: 0.920 +architecture: 0.913 +operating system: 0.906 +graphic: 0.858 +kernel: 0.798 +performance: 0.786 +x86: 0.785 +peripherals: 0.733 +virtual: 0.733 +semantic: 0.698 +device: 0.697 +hypervisor: 0.677 +ppc: 0.673 +files: 0.640 +mistranslation: 0.633 +network: 0.598 +VMM: 0.588 +register: 0.583 +debug: 0.580 +socket: 0.556 +user-level: 0.556 +PID: 0.549 +TCG: 0.541 +i386: 0.532 +risc-v: 0.497 +vnc: 0.467 +permissions: 0.403 +assembly: 0.393 +boot: 0.367 +KVM: 0.272 +alpha: 0.268 +-------------------- +arm: 0.988 +debug: 0.925 +operating system: 0.895 +kernel: 0.875 +hypervisor: 0.821 +user-level: 0.793 +virtual: 0.156 +files: 0.096 +architecture: 0.062 +device: 0.035 +VMM: 0.033 +TCG: 0.028 +network: 0.013 +PID: 0.009 +register: 0.009 +performance: 0.006 +socket: 0.005 +alpha: 0.004 +risc-v: 0.003 +semantic: 0.003 +ppc: 0.002 +assembly: 0.002 +peripherals: 0.002 +KVM: 0.001 +boot: 0.001 +graphic: 0.001 +permissions: 0.001 +vnc: 0.001 +x86: 0.001 +i386: 0.000 +mistranslation: 0.000 + +[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? + |