On Thu, Jun 14, 2018 at 05:29:45PM -0700, Paul Burton wrote: > diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S > index cbf190ef9e8a..8ce8f226e14a 100644 > --- a/arch/mips/kernel/scall64-n32.S > +++ b/arch/mips/kernel/scall64-n32.S > @@ -434,4 +434,5 @@ EXPORT(sysn32_call_table) > PTR sys_pkey_alloc > PTR sys_pkey_free > PTR sys_statx /* 6330 */ > + PTR sys_io_pgetevents > .size sysn32_call_table,.-sysn32_call_table > diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S > index 9ebe3e2403b1..7b5ce048b1e0 100644 > --- a/arch/mips/kernel/scall64-o32.S > +++ b/arch/mips/kernel/scall64-o32.S > @@ -583,4 +583,5 @@ EXPORT(sys32_call_table) > PTR sys_pkey_alloc > PTR sys_pkey_free /* 4365 */ > PTR sys_statx > + PTR sys_io_pgetevents I wonder if n32 and o32 on 64-bit kernels should use the compat versions of the io_pgetevents syscall? compat_sys_io_getevents is already used in these places. Cheers James