blob: 176b89d04ff3c6316532f0fed0bdb811670ecbee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, so I'm trying to figure out how to classify this bug report from QEMU. The user provided some categories and a specific bug description. Let me break it down step by step.
First, looking at the error message: "-accel hvf: Error: ret = HV_DENIED (0xfae94007, at ../accel/hvf/hvf-accel-ops.c:334)". The key here is "HV Denied" which suggests that there's an issue with Hyper-V or some virtualization acceleration feature.
The user mentioned executing the command on macOS Sequia 15.3. QEMU's -accel option usually relates to acceleration mechanisms, and HVF (Hybrid Virtualization Framework) is one of them. So this error is probably when trying to use hardware-based virtualization.
Now, looking at the categories provided: hypervisor is one of them. Since the issue is related to Hyper-V or virtualization acceleration, which directly ties into hypervisor functionality. Other possible categories like device, network, etc., don't seem as relevant here because the problem isn't about a specific hardware device or networking issue.
So putting it all together, the bug is about QEMU failing to use an acceleration method related to Hyper-V, which falls under hypervisor category.
</think>
hypervisor
|