1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<think>
Okay, I'm looking at this bug report for QEMU where using certain ISO images with qemu-system-i386 causes looping crashes after trying to boot from DVD/CD. The user mentioned that when they start the VM with KVM acceleration on i386, it loops, but works fine on x86_64 and Windows with WHPX.
First, I need to classify this bug into one of the given categories: mistranslation, assembly, other, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor.
The main issue is happening when using KVM acceleration on i386. The problem occurs during the boot process from an ISO image. Since it works with x86_64 and WHPX but fails with KVM, this points towards a possible issue related to the hypervisor or virtualization setup specific to KVM.
Looking at the categories, 'KVM' is one of them. The crash happens when using the '-accel kvm' option, which suggests that the problem lies within the KVM acceleration part of QEMU. It's not a translation issue (mistranslation) because it's working on other architectures, nor does it seem to be an assembly or graphic-related bug.
Therefore, the most fitting category here is 'KVM' since the issue arises specifically when using KVM as the accelerator for the i386 system.
</think>
The problem occurs when using KVM acceleration with i386 and specific ISO images. Since it works on other architectures but fails with KVM, the bug relates to KVM.
**Answer:** KVM
|