1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<think>
Okay, so I need to classify this bug report into one of the given categories for QEMU. Let me read through the problem carefully.
The user is reporting that when they run `qemu-system-arm`, it aborts in `lsi_soft_reset`. They're using a specific setup with Debian netboot installation on an ARM machine emulated by QEMU. The error message mentions an assertion failure in `hw/scsi/lsi53c895a.c` at line 351, which is part of the SCSI driver code.
Looking at the steps to reproduce, they're using a kernel and initrd from Debian's server, creating a disk image with `qemu-img`, and running QEMU with various parameters including network setup. The issue occurs during package download, leading to an assertion failure in the SCSI queue management.
The categories provided include things like mistranslation, assembly lowering, device, graphic, socket, etc. Since the error is happening in the SCSI driver code (`lsi53c895a.c`), which handles device emulation, specifically storage devices, this seems related to a hardware device issue within QEMU.
So, considering the categories, "device" would be appropriate here because it's an issue with how QEMU emulates the SCSI controller or hard disk. It's not a translation issue or performance problem; it's more about the device driver's correctness.
</think>
The bug report involves an assertion failure in the SCSI driver code within QEMU, which is part of the device emulation for storage devices. Therefore, the appropriate category is:
device
|