aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/time/timekeeping.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/time/timekeeping.c')
-rw-r--r--kernel/time/timekeeping.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 88c81026e00..07a3f1420c2 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -509,3 +509,19 @@ void monotonic_to_bootbased(struct timespec *ts)
509{ 509{
510 ts->tv_sec += total_sleep_time; 510 ts->tv_sec += total_sleep_time;
511} 511}
512
513struct timespec current_kernel_time(void)
514{
515 struct timespec now;
516 unsigned long seq;
517
518 do {
519 seq = read_seqbegin(&xtime_lock);
520
521 now = xtime;
522 } while (read_seqretry(&xtime_lock, seq));
523
524 return now;
525}
526
527EXPORT_SYMBOL(current_kernel_time);