1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<think>
Okay, let me try to figure out how to classify this bug report. The user is having trouble booting old amd64 Ubuntu ISOs in QEMU. Specifically, versions up to 6.06 don't work when using the amd64 version, but i386 works fine. It started breaking between QEMU 7.0.0 and 7.1.0.
First, I need to consider what categories are available: mistranslation, assembly, other, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor.
The issue is about the OS not starting, so it's related to the boot process. The user tried different QEMU versions and saw that older ones worked but newer didn't. They also noticed it works on an Intel machine but not AMD/Ryzen, which suggests a hardware or CPU-related problem.
Since the problem occurs during the early stages of the OS boot (early exception rip), this points to issues in how the virtualization handles certain instructions or the setup before the OS takes over. The fact that QEMU was working for older versions and broke in 7.1.0 suggests a regression in the code, possibly related to changes in how the hypervisor interacts with the CPU or the way it translates instructions.
Looking at the categories, "boot" seems directly relevant because the issue is about the system not starting up correctly. However, since this is happening on AMD hardware and might relate to KVM (which QEMU uses for virtualization), "hypervisor" could also be a category. But the primary problem is that the OS isn't booting, so I think "boot" is more appropriate.
Another angle: if it's an issue with how QEMU handles certain CPU instructions or translations, maybe "mistranslation," but the user mentioned it works on Intel machines, which suggests it's not a general translation issue but perhaps specific to AMD CPUs. That could fall under "hypervisor" as KVM might handle AMD and Intel differently.
But since the main symptom is that the OS doesn't boot, I think "boot" is the best fit here.
</think>
boot
|