From ee84b8b40004c970ab0ac660cb04f12cc2748e84 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 1 Apr 2013 05:29:23 -0400 Subject: linux: posix_fadvise: use new SYSCALL_ALIGN_64BIT Now that we have a new SYSCALL_ALIGN_64BIT define for tracking the 64bit register shift behavior, use it. This allows us to delete duplicated arm/xtensa files, as well as drop a few arch ifdefs from common code. Signed-off-by: Mike Frysinger --- libc/sysdeps/linux/common/posix_fadvise.c | 2 +- libc/sysdeps/linux/common/posix_fadvise64.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common') diff --git a/libc/sysdeps/linux/common/posix_fadvise.c b/libc/sysdeps/linux/common/posix_fadvise.c index f5bbaccb9..d3e1bd4e8 100644 --- a/libc/sysdeps/linux/common/posix_fadvise.c +++ b/libc/sysdeps/linux/common/posix_fadvise.c @@ -22,7 +22,7 @@ int posix_fadvise(int fd, off_t offset, off_t len, int advice) # if __WORDSIZE == 64 ret = INTERNAL_SYSCALL(fadvise64, err, 4, fd, offset, len, advice); # else -# ifdef __powerpc__ +# if defined(__UCLIBC_SYSCALL_ALIGN_64BIT__) ret = INTERNAL_SYSCALL(fadvise64, err, 6, fd, /*unused*/0, # else ret = INTERNAL_SYSCALL(fadvise64, err, 5, fd, diff --git a/libc/sysdeps/linux/common/posix_fadvise64.c b/libc/sysdeps/linux/common/posix_fadvise64.c index 5a302d3c9..5d8989121 100644 --- a/libc/sysdeps/linux/common/posix_fadvise64.c +++ b/libc/sysdeps/linux/common/posix_fadvise64.c @@ -23,7 +23,8 @@ int posix_fadvise64(int fd, off64_t offset, off64_t len, int advice) { INTERNAL_SYSCALL_DECL (err); -# if defined __powerpc__ || defined __arm__ || defined __xtensa__ + /* ARM has always been funky. */ +# if defined(__UCLIBC_SYSCALL_ALIGN_64BIT__) || defined(__arm__) int ret = INTERNAL_SYSCALL (fadvise64_64, err, 6, fd, advice, OFF64_HI_LO (offset), OFF64_HI_LO (len)); # else -- cgit v1.2.3