blob: 6af01449aad93717cdd582d3007cf691031daa8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<think>
Alright, I'm trying to figure out whether this bug report about the VHOST_USER_ADD_MEM_REG is a user-mode or system-mode issue in QEMU. Let me break it down.
VHOST_USER seems related to vhost-user protocol, which is typically used for virtio devices. In QEMU, when using vhost-user, it's often handled by user-mode processes because vhost-user is designed for unprivileged userspace drivers. So the VHOST_USER_ADD_MEM_REG might be part of adding memory regions in this context.
System-mode bugs usually involve higher privileges or kernel interaction, like dealing with hardware devices directly. Since vhost-user is about userland communication, it's more likely a user-mode issue unless it's interacting with kernel modules, which I don't think is the case here.
So, putting it together, the bug report is probably related to user-mode.
</think>
user
|