1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<think>
Alright, let's break down this bug report to classify it correctly among the given categories.
The user mentioned an issue with i386 VMs being limited to 255 vCPUs and wants to increase it. The problem is in `pc.c` where `mc->max_cpus = 255;`. So, they're looking to change this maximum value.
Looking at the possible categories: mistranslation, assembly lowering, other, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor.
The bug is about CPU limits in a VM setup. It's related to hardware virtualization, specifically the number of virtual CPUs allowed. This seems more like a configuration or resource limitation rather than an assembly translation error or a device issue.
The mention of APIC IDs and x2APIC suggests it's dealing with CPU-specific structures within QEMU, which is part of the hypervisor's responsibilities. Hypervisors manage virtual machines' resources, including vCPUs and their configurations.
So, the category should be hypervisor because it pertains to VM configuration limits handled by QEMU as a hypervisor.
</think>
hypervisor
|