diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2019-02-27 15:45:27 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-02-27 15:45:27 -0500 |
commit | cfbe271667b7aba03b403aee916ccd457409d2e8 (patch) | |
tree | c414127aa33364a7375dc6e736fb5cef931b8b8f /arch/h8300 | |
parent | 41ea39101d6b84394fae0c12b702c4326aa71d17 (diff) | |
parent | d4c08b9776b392e20efc6198ebe1bc8ec1911d9b (diff) |
Merge tag 'y2038-syscall-abi' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/playground into timers/2038
Pull additional syscall ABI cleanup for y2038 from Arnd Bergmann:
This is a follow-up to the y2038 syscall patches already merged in the tip
tree. As the final 32-bit RISC-V syscall ABI is still being decided on,
this is the last chance to make a few corrections to leave out interfaces
based on 32-bit time_t along with the old off_t and rlimit types.
The series achieves this in a few steps:
- A couple of bug fixes for minor regressions I introduced
in the original series
- A couple of older patches from Yury Norov that I had never
merged in the past, these fix up the openat/open_by_handle_at and
getrlimit/setrlimit syscalls to disallow the old versions of off_t
and rlimit.
- Hiding the deprecated system calls behind an #ifdef in
include/uapi/asm-generic/unistd.h
- Change arch/riscv to drop all these ABIs.
Originally, the plan was to also leave these out on C-Sky, but that now
has a glibc port that uses the older interfaces, so we need to leave
them in place.
Diffstat (limited to 'arch/h8300')
-rw-r--r-- | arch/h8300/Kconfig | 1 | ||||
-rw-r--r-- | arch/h8300/include/uapi/asm/unistd.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/arch/h8300/Kconfig b/arch/h8300/Kconfig index 6472a0685470..c071da34e081 100644 --- a/arch/h8300/Kconfig +++ b/arch/h8300/Kconfig | |||
@@ -1,6 +1,7 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | config H8300 | 2 | config H8300 |
3 | def_bool y | 3 | def_bool y |
4 | select ARCH_32BIT_OFF_T | ||
4 | select GENERIC_ATOMIC64 | 5 | select GENERIC_ATOMIC64 |
5 | select HAVE_UID16 | 6 | select HAVE_UID16 |
6 | select VIRT_TO_BUS | 7 | select VIRT_TO_BUS |
diff --git a/arch/h8300/include/uapi/asm/unistd.h b/arch/h8300/include/uapi/asm/unistd.h index 628195823816..eb7bc0012af5 100644 --- a/arch/h8300/include/uapi/asm/unistd.h +++ b/arch/h8300/include/uapi/asm/unistd.h | |||
@@ -2,5 +2,7 @@ | |||
2 | 2 | ||
3 | #define __ARCH_WANT_RENAMEAT | 3 | #define __ARCH_WANT_RENAMEAT |
4 | #define __ARCH_WANT_STAT64 | 4 | #define __ARCH_WANT_STAT64 |
5 | #define __ARCH_WANT_SET_GET_RLIMIT | ||
6 | #define __ARCH_WANT_TIME32_SYSCALLS | ||
5 | 7 | ||
6 | #include <asm-generic/unistd.h> | 8 | #include <asm-generic/unistd.h> |