https://bugs.kde.org/show_bug.cgi?id=468575
--- Comment #40 from Mark Wielaard <m...@klomp.org> --- The none/tests/mmap_o_direct failure comes from vki-riscv64-linux.h not defining VKI_O_DIRECT. With that defined the test passes. diff --git a/include/vki/vki-riscv64-linux.h b/include/vki/vki-riscv64-linux.h index 72f7ed420..5cc98b6ab 100644 --- a/include/vki/vki-riscv64-linux.h +++ b/include/vki/vki-riscv64-linux.h @@ -208,6 +208,7 @@ typedef struct vki_sigaltstack { #define VKI_O_APPEND 02000 #define VKI_O_NONBLOCK 04000 #define VKI_O_LARGEFILE 0100000 +#define VKI_O_DIRECT 00040000 #define VKI_F_DUPFD 0 /* dup */ #define VKI_F_GETFD 1 /* get close_on_exec */ -- You are receiving this mail because: You are watching all bug changes.