Recent changes (master)
Jens Axboe <[email protected]> Wed, 27 Aug 2025 06:00:01 -0600 (MDT)
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit 2a85ed69d8ef0525b50691aede23f1e10d264634:
Merge branch 'fix_mandoc_warnings' of https://github.com/sitsofe/fio (2025-08-25 09:51:36 -0400)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to d6acda3d2e3992dbbb51e6ce2ba5d69e5ef85570:
Merge branch 'patch-1' of https://github.com/neheb/fio (2025-08-26 19:56:42 -0600)
----------------------------------------------------------------
Jens Axboe (1):
Merge branch 'patch-1' of https://github.com/neheb/fio
Rosen Penev (1):
fio: fix formats under MIPS64/PPC
arch/arch-mips.h | 4 ++++
arch/arch-ppc.h | 4 ++++
2 files changed, 8 insertions(+)
---
Diff of recent changes:
diff --git a/arch/arch-mips.h b/arch/arch-mips.h
index 6f157fbb..8a0e9370 100644
--- a/arch/arch-mips.h
+++ b/arch/arch-mips.h
@@ -3,6 +3,10 @@
#define FIO_ARCH (arch_mips)
+#ifndef __SANE_USERSPACE_TYPES__
+#define __SANE_USERSPACE_TYPES__
+#endif
+
#define read_barrier() __asm__ __volatile__("": : :"memory")
#define write_barrier() __asm__ __volatile__("": : :"memory")
#define nop __asm__ __volatile__("": : :"memory")
diff --git a/arch/arch-ppc.h b/arch/arch-ppc.h
index 804d596a..7f3503b6 100644
--- a/arch/arch-ppc.h
+++ b/arch/arch-ppc.h
@@ -8,6 +8,10 @@
#define FIO_ARCH (arch_ppc)
+#ifndef __SANE_USERSPACE_TYPES__
+#define __SANE_USERSPACE_TYPES__
+#endif
+
#define nop do { } while (0)
#ifdef __powerpc64__