blob: 43b312c7d59a1ec7af889ea0d6e6f1d2aa58c0a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to determine whether the given bug report about QEMU relates to user-mode or system-mode. The issue is that qemu linux-user doesn't translate host/target data for iovec I/O.
First, understanding what each mode does: User-mode QEMU translates machine code from one architecture to another without requiring a full OS emulation. It's used for running untrusted code, like in沙箱环境,专注于二进制翻译和系统调用处理。
System-mode, on the other hand, emulates an entire system, including hardware peripherals and devices, which requires higher privileges because it interacts with more底层的系统资源.
The bug report mentions 'linux-user', which is part of user-mode QEMU. It's specifically about translating data for iovec I/O, which relates to how system calls are handled between the host and target environments. Since this involves binary translation and handling of I/O in a user-level context without full OS emulation, it falls under user-mode.
So the bug is related to user-mode.
</think>
user
|