blob: 8f8ab6444a69c178a8fb7a36659d2cccd7249ae9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<think>
Alright, so I need to classify this bug report for QEMU. Let's look at what the user provided.
First, the issue is a segfault in `cpu_physical_memory_set_dirty_range` on HPPA + Artist. The stack trace shows that it crashes when running some test commands through QTest.
Looking at the stack trace, the error happens in `block_move` function within `artist.c`, specifically line 525. This file is part of the display hardware emulation for Artist, which I think is a GPU model.
The segfault occurs during a memory access, likely due to an invalid pointer or accessing prohibited memory. The functions involved are related to memory regions and device handling.
Since `artist.c` is about the display, it's under peripherals. The function names like `artist_reg_write` suggest it's dealing with register writes for the Artist GPU.
So, putting this together, the bug relates to a device (specifically the Artist GPU) causing an issue during memory access. Therefore, the category should be 'device'.
</think>
The bug report involves a segfault in the Artist display driver, which is part of the device emulation.
Answer: device
|