aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/time/posix-stubs.c
diff options
context:
space:
mode:
authorDeepa Dinamani <deepa.kernel@gmail.com>2018-03-13 21:03:29 -0700
committerArnd Bergmann <arnd@arndb.de>2018-04-19 13:30:58 +0200
commitb5793b0d92c95cdd5b7bd9bcb6d9307a217e0de7 (patch)
treec265bb75169b56ec4ab8ec6e5aa7f23b2a543089 /kernel/time/posix-stubs.c
parenttime: Introduce CONFIG_COMPAT_32BIT_TIME (diff)
downloadwireguard-linux-b5793b0d92c95cdd5b7bd9bcb6d9307a217e0de7.tar.xz
wireguard-linux-b5793b0d92c95cdd5b7bd9bcb6d9307a217e0de7.zip
posix-timers: Make compat syscalls depend on CONFIG_COMPAT_32BIT_TIME
clock_gettime, clock_settime, clock_getres and clock_nanosleep compat syscalls are also repurposed to provide backward compatibility to support 32 bit time_t on 32 bit systems. Note that nanosleep compat syscall will also be treated the same way as the above syscalls as it shares common handler functions with clock_nanosleep. But, there is no plan to provide y2038 safe solution for nanosleep. Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'kernel/time/posix-stubs.c')
-rw-r--r--kernel/time/posix-stubs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/time/posix-stubs.c b/kernel/time/posix-stubs.c
index e0dbae98db9d..b605b0a40ba9 100644
--- a/kernel/time/posix-stubs.c
+++ b/kernel/time/posix-stubs.c
@@ -160,7 +160,9 @@ COMPAT_SYS_NI(timer_settime);
COMPAT_SYS_NI(timer_gettime);
COMPAT_SYS_NI(getitimer);
COMPAT_SYS_NI(setitimer);
+#endif
+#ifdef CONFIG_COMPAT_32BIT_TIME
COMPAT_SYSCALL_DEFINE2(clock_settime, const clockid_t, which_clock,
struct compat_timespec __user *, tp)
{