]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
hexagon: fix fadvise64_64 calling conventions
authorArnd Bergmann <arnd@arndb.de>
Thu, 20 Jun 2024 13:24:11 +0000 (15:24 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Jul 2024 07:31:57 +0000 (09:31 +0200)
commit948dc69f4beafd2547bc1238538f3b7edafe90a8
treec86e05b10e8ea2251d1ad5922f90c62af07bca90
parent0f92275527165e91e81aa0400dea2c92254789e6
hexagon: fix fadvise64_64 calling conventions

commit 896842284c6ccba25ec9d78b7b6e62cdd507c083 upstream.

fadvise64_64() has two 64-bit arguments at the wrong alignment
for hexagon, which turns them into a 7-argument syscall that is
not supported by Linux.

The downstream musl port for hexagon actually asks for a 6-argument
version the same way we do it on arm, csky, powerpc, so make the
kernel do it the same way to avoid having to change both.

Link: https://github.com/quic/musl/blob/hexagon/arch/hexagon/syscall_arch.h#L78
Cc: stable@vger.kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/hexagon/include/asm/syscalls.h [new file with mode: 0644]
arch/hexagon/kernel/syscalltab.c