diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-04-17 16:31:07 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2018-12-07 22:19:07 +0100 |
commit | 04e7712f4460585e5eed5b853fd8b82a9943958f (patch) | |
tree | fe01703eff2d685421e75d2a6e9e27d3b9707aa8 /kernel/Makefile | |
parent | 7a35397f8c06bffd4c747537095321ff971045a5 (diff) | |
download | linux-04e7712f4460585e5eed5b853fd8b82a9943958f.tar.gz linux-04e7712f4460585e5eed5b853fd8b82a9943958f.tar.bz2 linux-04e7712f4460585e5eed5b853fd8b82a9943958f.zip |
y2038: futex: Move compat implementation into futex.c
We are going to share the compat_sys_futex() handler between 64-bit
architectures and 32-bit architectures that need to deal with both 32-bit
and 64-bit time_t, and this is easier if both entry points are in the
same file.
In fact, most other system call handlers do the same thing these days, so
let's follow the trend here and merge all of futex_compat.c into futex.c.
In the process, a few minor changes have to be done to make sure everything
still makes sense: handle_futex_death() and futex_cmpxchg_enabled() become
local symbol, and the compat version of the fetch_robust_entry() function
gets renamed to compat_fetch_robust_entry() to avoid a symbol clash.
This is intended as a purely cosmetic patch, no behavior should
change.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 7343b3a9bff0..8e40a6742d23 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -49,9 +49,6 @@ obj-$(CONFIG_PROFILING) += profile.o obj-$(CONFIG_STACKTRACE) += stacktrace.o obj-y += time/ obj-$(CONFIG_FUTEX) += futex.o -ifeq ($(CONFIG_COMPAT),y) -obj-$(CONFIG_FUTEX) += futex_compat.o -endif obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o obj-$(CONFIG_SMP) += smp.o ifneq ($(CONFIG_SMP),y) |