1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to classify this bug report into one of the given categories: mistranslation, assembly, other, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor.
The bug is about extending uefi-test-tools to report SMBIOS location. The UEFI helper app currently exposes the pointer for RSDP but not SMBIOS tables. This affects the testing because the test skips checking SMBIOS when running with UEFI firmware. The solution is to add two new entry points for SMBIOS 2 and 3.
Looking at the categories, this seems related to UEFI functionality, specifically in a testing context. UEFI is part of the hypervisor or firmware layer in QEMU. Since it's about exposing pointers and adding test capabilities, it doesn't fall under mistranslation or assembly. It also isn't about performance, network, or graphics.
The SMBIOS tables are part of the BIOS/CPU interface, which relates to peripherals since they provide hardware information. However, UEFI is more closely tied to the hypervisor, which manages virtualized environments and firmware features.
So, considering that the issue deals with adding new entry points in a testing tool related to UEFI, the most appropriate category would be 'hypervisor'.
</think>
hypervisor
|