blob: abb57a53ddf975953d8d2358cb1db38c7a83e166 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to classify this bug report as either a user-mode or system-mode issue in QEMU. Let's see.
The problem is about running 32-bit x86 binaries using qemu-i386 on hosts with a page size larger than 4KB, like LoongArch, ppc64le, or arm64 with 3-level page tables. The user provided steps to reproduce and additional info about the .text segment alignment.
The bug seems related to how QEMU's user-mode emulator handles the binary's memory layout on systems with different page sizes. Specifically, the alignment in elfload.c (pbg_dynamic) isn't working as expected when the host's page size is larger than 4KB.
Since this involves running a user-space application under emulation and deals with memory alignment and loading of the executable into memory, it falls under user-mode emulation. The issue doesn't involve higher privileges, peripherals, or operating systems in a system-mode context. It's about executing binaries correctly in the user space.
So, the classification should be 'user'.
</think>
user
|