summaryrefslogtreecommitdiffstats
path: root/kernel/time/posix-stubs.c
diff options
context:
space:
mode:
authorArnd Bergmann2018-06-18 16:32:24 +0200
committerThomas Gleixner2018-06-19 09:56:27 +0200
commit58a10456d7175fa674b951f1fd7ead3d9a550db4 (patch)
treeee8549587232beda4dc016eb5135ac793ee62cfc /kernel/time/posix-stubs.c
parenttimekeeping: Use ktime_get_real_ts64() instead of getnstimeofday64() (diff)
downloadkernel-qcow2-linux-58a10456d7175fa674b951f1fd7ead3d9a550db4.tar.gz
kernel-qcow2-linux-58a10456d7175fa674b951f1fd7ead3d9a550db4.tar.xz
kernel-qcow2-linux-58a10456d7175fa674b951f1fd7ead3d9a550db4.zip
posix-timers: Use new ktime_get_*_ts64() helpers
Some of the oddly named time accessor functions now have a more consistent naming, which should be used from now on so the aliases can be removed. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: y2038@lists.linaro.org Cc: Deepa Dinamani <deepa.kernel@gmail.com> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Link: https://lkml.kernel.org/r/20180618143246.3865099-1-arnd@arndb.de
Diffstat (limited to 'kernel/time/posix-stubs.c')
-rw-r--r--kernel/time/posix-stubs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/posix-stubs.c b/kernel/time/posix-stubs.c
index 26aa9569e24a..2c6847d5d69b 100644
--- a/kernel/time/posix-stubs.c
+++ b/kernel/time/posix-stubs.c
@@ -81,7 +81,7 @@ int do_clock_gettime(clockid_t which_clock, struct timespec64 *tp)
ktime_get_ts64(tp);
break;
case CLOCK_BOOTTIME:
- get_monotonic_boottime64(tp);
+ ktime_get_boottime_ts64(tp);
break;
default:
return -EINVAL;