[PATCH 3/9] ARM: oabi-compat: add epoll_pwait handler

2020-10-30 Thread Arnd Bergmann
From: Arnd Bergmann The epoll_wait() syscall has a special version for OABI compat mode to convert the arguments to the EABI structure layout of the kernel. However, the later epoll_pwait() syscall was added in arch/arm in linux-2.6.32 without this conversion. Use the same kind of handler for bo

Re: [PATCH 3/9] ARM: oabi-compat: add epoll_pwait handler

2020-09-07 Thread Christoph Hellwig
> +SYSCALL_DEFINE4(oabi_epoll_wait, int, epfd, struct oabi_epoll_event __user > *, events, > + int, maxevents, int, timeout) > +SYSCALL_DEFINE6(oabi_epoll_pwait, int, epfd, struct oabi_epoll_event __user > *, events, > + int, maxevents, int, timeout, const sigset_t __user

[PATCH 3/9] ARM: oabi-compat: add epoll_pwait handler

2020-09-07 Thread Arnd Bergmann
The epoll_wait() syscall has a special version for OABI compat mode to convert the arguments to the EABI structure layout of the kernel. However, the later epoll_pwait() syscall was added in arch/arm in linux-2.6.32 without this conversion. Use the same kind of handler for both. Fixes: 369842658a