blob: 7f0b7c1b29a3d11100d059b692aa0a957c47bd3e (
plain) (
blame)
1
2
3
4
5
6
7
|
The bug report describes an issue where certain packages fail during installation when using `coreutils-9` on an ext4 filesystem, specifically with n32 (MIPS 32-bit) binaries under QEMU emulation. The errors involve invalid arguments during file operations like `fadvise64` and `fallocate`, which are system calls related to file management.
The problem seems to be centered around how these system calls are being handled by the QEMU emulator for MIPS architecture, particularly when interacting with ext4 filesystems. The `strace` output shows that the failure occurs at specific syscalls (`fadvise64` and `fallocate`), indicating a potential issue in how these syscalls are emulated or translated by QEMU.
Given this analysis, the appropriate classification for the bug is related to system calls within the emulator.
**syscall**
|