We don't want new architectures to even provide the old 32-bit time_t based system calls any more, or define the syscall number macros. Add a new __ARCH_WANT_TIME32_SYSCALLS macro that gets enabled for all existing 32-bit architectures using the generic system call table, so we don't change any current behavior. Since this symbol is evaluated in user space as well, we cannot use a Kconfig CONFIG_* macro but have to define it in uapi/asm/unistd.h. On 64-bit architectures, the same system call numbers mostly refer to the system calls we want to keep, as they already pass 64-bit time_t. As new architectures no longer provide these, we need new exceptions in checksyscalls.sh. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
17 lines
533 B
C
17 lines
533 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
// Copyright (C) 2005-2017 Andes Technology Corporation
|
|
|
|
#define __ARCH_WANT_STAT64
|
|
#define __ARCH_WANT_SYNC_FILE_RANGE2
|
|
#define __ARCH_WANT_SET_GET_RLIMIT
|
|
#define __ARCH_WANT_TIME32_SYSCALLS
|
|
|
|
/* Use the standard ABI for syscalls */
|
|
#include <asm-generic/unistd.h>
|
|
|
|
/* Additional NDS32 specific syscalls. */
|
|
#define __NR_cacheflush (__NR_arch_specific_syscall)
|
|
#define __NR_udftrap (__NR_arch_specific_syscall + 1)
|
|
__SYSCALL(__NR_cacheflush, sys_cacheflush)
|
|
__SYSCALL(__NR_udftrap, sys_udftrap)
|