diff options
author | Deepa Dinamani <deepa.kernel@gmail.com> | 2018-07-03 08:44:22 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2019-02-07 02:13:27 +0300 |
commit | 3876ced476c8ec17265d1739467e726ada88b660 (patch) | |
tree | 222617f692589b6362731cb248831db89c75f1cf /kernel/time/posix-timers.c | |
parent | ead25417f82ed7f8a21da4dcefc768169f7da884 (diff) | |
download | linux-3876ced476c8ec17265d1739467e726ada88b660.tar.xz |
timex: change syscalls to use struct __kernel_timex
struct timex is not y2038 safe.
Switch all the syscall apis to use y2038 safe __kernel_timex.
Note that sys_adjtimex() does not have a y2038 safe solution. C libraries
can implement it by calling clock_adjtime(CLOCK_REALTIME, ...).
Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'kernel/time/posix-timers.c')
-rw-r--r-- | kernel/time/posix-timers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/posix-timers.c b/kernel/time/posix-timers.c index 2d84b3db1ade..de79f85ae14f 100644 --- a/kernel/time/posix-timers.c +++ b/kernel/time/posix-timers.c @@ -1060,7 +1060,7 @@ int do_clock_adjtime(const clockid_t which_clock, struct __kernel_timex * ktx) } SYSCALL_DEFINE2(clock_adjtime, const clockid_t, which_clock, - struct timex __user *, utx) + struct __kernel_timex __user *, utx) { struct __kernel_timex ktx; int err; |