blob: fb946450ca25674b05b13eab86877cfe6b2a5324 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
The issue involves problems with `coreutils-9*`, specifically `install` and `cp`, encountering errors related to `fadvise64` and `fallocate` when using QEMU for MIPS N32 systems. The strace output shows that these operations result in "Invalid argument" errors, which are likely due to compatibility issues with the ext4 filesystem on MIPS N32 under QEMU.
The bug report points to a problem during runtime where system calls (`fadvise64` and `fallocate`) fail with an invalid argument error. This suggests that the issue is related to how these syscalls are being handled or emulated within the QEMU environment for MIPS N32 architectures.
Considering the categories provided:
- **instruction**: Not applicable, as there's no mention of specific CPU instructions causing issues.
- **syscall**: Directly relevant because the errors occur during system calls (`fadvise64` and `fallocate`) with invalid arguments.
- **runtime**: While the issue does occur at runtime, it is more specifically tied to syscall failures.
Therefore, the most accurate classification for this bug report is:
**syscall**
|