blob: 0546a0cee902433e038a2aa728e848de990115b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Alright, let's tackle this bug classification task. The user provided a list of categories and a bug report snippet: "-hda FAT: limited to 504MBytes". I need to figure out which category this falls into.
First, the error message mentions "hda" which refers to the first IDE hard drive in QEMU. The issue is about the FAT filesystem being limited to 504MB. That sounds like a problem with how the filesystem is handled when using QEMU as a hypervisor or emulator.
Looking at the categories: device, network, KVM, boot, etc. "Device" seems relevant here because it's related to the handling of hardware devices in the virtual machine. Specifically, hda is a storage device, and the problem is with how FAT is being managed on that device.
Other possibilities like "filesystem" aren't listed, but since the bug pertains to the interaction between QEMU and the storage device's filesystem, "device" makes sense as it covers hardware-related issues in the VM setup.
</think>
The issue relates to the handling of a storage device (hda) with FAT filesystem limitation.
**category: device**
|