1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, so I need to classify this bug report from QEMU into one of the given categories. Let me read through the details carefully.
The user provided a command line that includes several QEMU options like `-M pc`, `-m 256` for memory, and various network configurations. They used `-net nic` and `-net tap` for networking. Then, in the QEMU monitor, they tried to execute `pci_add auto nic vlan=1,...` which resulted in an error: "Property 'e1000.netdev' can't take value 'hub0port0', it's in use."
Hmm, so the issue arises when trying to add a new NIC using the pci_add command. The error message mentions 'e1000.netdev' and 'hub0port0'. It seems related to network device configuration.
Looking at the possible categories: device, graphic, socket, network, etc. Since this involves adding a network interface (NIC) and there's an issue with netdev properties, it's likely a networking problem within QEMU.
The error occurs during runtime when trying to configure the NIC, so it's not a translation or assembly issue. It doesn't fall under performance, permissions, or hypervisor directly either. So the most fitting category is 'network'.
</think>
network
|