The following changes since commit f89cfed7d28f76e99ee7520d6d350b9847fab07c: engines/libaio.c: remove unused 'hipri' setting (2019-11-02 14:48:24 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 35e3ade0fe63f5149e07024ee31a02ac14d2dde7: Merge branch 'master' of https://github.com/aphreet/fio (2019-11-03 06:35:44 -0700) ---------------------------------------------------------------- Jens Axboe (1): Merge branch 'master' of https://github.com/aphreet/fio Mikhail Malygin (1): Enable io_uring engine on powerpc arch arch/arch-ppc.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) --- Diff of recent changes: diff --git a/arch/arch-ppc.h b/arch/arch-ppc.h index 804d596a..46246bae 100644 --- a/arch/arch-ppc.h +++ b/arch/arch-ppc.h @@ -24,6 +24,18 @@ #define PPC_CNTLZL "cntlzw" #endif +#define ARCH_HAVE_IOURING + +#ifndef __NR_sys_io_uring_setup +#define __NR_sys_io_uring_setup 425 +#endif +#ifndef __NR_sys_io_uring_enter +#define __NR_sys_io_uring_enter 426 +#endif +#ifndef __NR_sys_io_uring_register +#define __NR_sys_io_uring_register 427 +#endif + static inline int __ilog2(unsigned long bitmask) { int lz;