blob: 6ff8e3dc807f36516212ffedfc3a3387cfc61000 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<think>
Okay, so I need to classify this bug report about QEMU into one of the given categories. The report says that QEMU should warn the user when they pass a '-vga something' option but it's ignored.
First, let me understand what each category means. Looking at the list: there are categories like mistranslation, assembly lowering, device, graphic, and others.
The bug is about QEMU not warning when a certain command-line option (-vga) is passed but isn't being used. So this relates to how QEMU handles user input and command-line options.
I know that -vga typically refers to setting the VGA output for virtual machines, which falls under graphics configuration. However, the issue here isn't about rendering graphics incorrectly but rather about a missing warning when an option is ignored.
So, it's not about the graphics functionality itself (like graphic category) but more about how QEMU processes user commands and provides feedback. Since it's related to command-line options and warnings, I'm thinking this might fall under 'other' because it doesn't directly fit into any of the specific categories like device or network.
Alternatively, maybe it's a bug in processing input, which could be part of the hypervisor or kernel category, but I think 'other' is more appropriate here since it's about user feedback and not the core functionality.
</think>
The bug report suggests that QEMU should provide a warning when an ignored '-vga' option is used. This relates to how command-line options are handled and user feedback, which doesn't fit into specific categories like device or network but rather falls under general issues.
other
|