blob: 771fdb37dab5409ad7617804d428231895d5e303 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<think>
Okay, I need to classify this QEMU bug report as either user-mode or system-mode. Let's see what the error message says: it mentions "virtual address space" and suggests checking ulimit settings or using the -R option.
QEMU can run in both modes. In user mode, it emulates a CPU and runs applications without a full OS, which might involve virtual memory issues like this. System mode involves running an entire OS with hardware emulation.
The error about reserving address space seems related to how QEMU is allocating memory for the guest environment. Since it's talking about virtual addresses and suggests adjusting ulimit or reserve less with -R, that sounds more like user-mode specifics because those settings are typically about resource limits in a user context.
So I think this bug is related to user-mode.
</think>
user
|