lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <1464048292-30136-7-git-send-email-ynorov@caviumnetworks.com> Date: Tue, 24 May 2016 03:04:35 +0300 From: Yury Norov <ynorov@...iumnetworks.com> To: <arnd@...db.de>, <catalin.marinas@....com>, <linux-arm-kernel@...ts.infradead.org>, <linux-kernel@...r.kernel.org>, <linux-doc@...r.kernel.org>, <linux-arch@...r.kernel.org>, <linux-s390@...r.kernel.org>, <libc-alpha@...rceware.org> CC: <schwidefsky@...ibm.com>, <heiko.carstens@...ibm.com>, <ynorov@...iumnetworks.com>, <pinskia@...il.com>, <broonie@...nel.org>, <joseph@...esourcery.com>, <christoph.muellner@...obroma-systems.com>, <bamvor.zhangjian@...wei.com>, <szabolcs.nagy@....com>, <klimov.linux@...il.com>, <Nathan_Lynch@...tor.com>, <agraf@...e.de>, <Prasun.Kapoor@...iumnetworks.com>, <kilobyte@...band.pl>, <geert@...ux-m68k.org>, <philipp.tomsich@...obroma-systems.com> Subject: [PATCH 06/23] compat ABI: use non-compat openat and open_by_handle_at variants The only difference is that non-compat version forces O_LARGEFILE, and it should be the default behaviour for all architectures, as we don't support 32-bit off_t. The only exception is tile32, that continues with compat version of syscalls. Signed-off-by: Yury Norov <ynorov@...iumnetworks.com> Acked-by: Arnd Bergmann <arnd@...db.de> Acked-by: Chris Metcalf <cmetcalf@...hip.com> [for tile] --- arch/tile/kernel/compat.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/tile/kernel/compat.c b/arch/tile/kernel/compat.c index 4912084..489ae19 100644 --- a/arch/tile/kernel/compat.c +++ b/arch/tile/kernel/compat.c @@ -94,6 +94,9 @@ COMPAT_SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned int, offset_high, #define compat_sys_readahead sys32_readahead #define sys_llseek compat_sys_llseek +#define sys_openat compat_sys_openat +#define sys_open_by_handle_at compat_sys_open_by_handle_at + /* Call the assembly trampolines where necessary. */ #define compat_sys_rt_sigreturn _compat_sys_rt_sigreturn #define sys_clone _sys_clone -- 2.5.0
Powered by blists - more mailing lists