blob: 8a15cedbbe7ff702a653211f2cea4eeab995df2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<think>
Okay, so I need to figure out whether this QEMU bug is user-mode or system-mode related. The issue mentioned is about a missing PMR capability check for the PMRCTL register write. Hmm, PMR... that sounds like it's related to power management or reset controls in hardware.
In QEMU, which is an emulator, when dealing with registers like PMRCTL, especially one that might control power management functions, this seems like it would be part of a device model. Devices in emulators are typically handled at the system level because they interact with lower-level components and have higher privileges.
User-mode issues usually involve application-level problems or things that run without needing special permissions. But PMRCTL sounds more like a hardware register, which would be part of the system emulation, such as how the virtual CPU interacts with virtual devices. So this is likely a system-mode issue because it involves device control and possibly higher privileges required to access and modify such registers.
</think>
system
|