blob: c994f28c0f4e4930993ac9b869d1f45eafc738a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, so I'm trying to figure out whether this bug report is related to user-mode or system-mode in QEMU. The report mentions that a specific commit (95059f9c313a7fbd7f22e4cdc1977c0393addc7b) breaks some 32-bit architectures in linux-user on amd64.
Hmm, I remember that QEMU has two main modes: user-mode and system-mode. User-mode is for running individual processes or applications without a full OS, while system-mode emulates an entire system including hardware devices and the kernel.
The bug report talks about "linux-user", which I think refers to user-mode emulation because it's used to run Linux binaries on another system. So if this commit affects how 32-bit architectures work in user-mode under amd64, that makes sense as a user-mode issue. It doesn't mention anything about hardware devices or higher privileges, so it's more about the application-level execution rather than system-level emulation.
Therefore, I should classify this bug report as 'user' related.
</think>
The bug report discusses issues with 32-bit architectures in the linux-user environment on amd64, which pertains to user-mode emulation.
user
|