blob: 8a179e251d633613e5a8a5ebb14d051816873aea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<think>
Alright, I need to classify this bug report into one of the given categories. Let's read through the problem description carefully.
The user is experiencing an issue when trying to shut down a guest OS running under QEMU using `shutdown -h now`. Specifically, when using an `ide-hd` disk during recording, it leads to a long wait and then a BMDMA error.
Looking at the steps to reproduce, they're using QEMU with various options including `-drive`, `-device ide-hd`, etc., which points towards disk I/O issues. The additional information shows specific ATA errors related to BMDMA (Bus Master Direct Memory Access), which are typically hardware-level disk access problems.
The error messages mention `BMDMA stat 0x5` and a failed command `READ DMA`. These terms are directly associated with IDE/HDD operations, indicating that there's an issue with how the host is handling disk requests during shutdown.
Considering the categories provided: device seems relevant because it pertains to hardware devices (IDE-HD in this case). Other categories like network or socket don't apply here since the problem isn't related to networking. The error is specific to disk I/O, which falls under device-related issues.
Therefore, the appropriate category for this bug report is 'device'.
</think>
The issue involves BMDMA errors during shutdown with an `ide-hd` disk, pointing to a hardware-level disk access problem. This relates directly to device handling in QEMU.
Answer: device
|