]> Pileus Git - ~andy/linux/blob - kernel/time/timekeeping.c
time: Condense timekeeper.xtime into xtime_sec
[~andy/linux] / kernel / time / timekeeping.c
1 /*
2  *  linux/kernel/time/timekeeping.c
3  *
4  *  Kernel timekeeping code and accessor functions
5  *
6  *  This code was moved from linux/kernel/timer.c.
7  *  Please see that file for copyright and history logs.
8  *
9  */
10
11 #include <linux/module.h>
12 #include <linux/interrupt.h>
13 #include <linux/percpu.h>
14 #include <linux/init.h>
15 #include <linux/mm.h>
16 #include <linux/sched.h>
17 #include <linux/syscore_ops.h>
18 #include <linux/clocksource.h>
19 #include <linux/jiffies.h>
20 #include <linux/time.h>
21 #include <linux/tick.h>
22 #include <linux/stop_machine.h>
23
24 /* Structure holding internal timekeeping values. */
25 struct timekeeper {
26         /* Current clocksource used for timekeeping. */
27         struct clocksource      *clock;
28         /* NTP adjusted clock multiplier */
29         u32                     mult;
30         /* The shift value of the current clocksource. */
31         u32                     shift;
32         /* Number of clock cycles in one NTP interval. */
33         cycle_t                 cycle_interval;
34         /* Number of clock shifted nano seconds in one NTP interval. */
35         u64                     xtime_interval;
36         /* shifted nano seconds left over when rounding cycle_interval */
37         s64                     xtime_remainder;
38         /* Raw nano seconds accumulated per NTP interval. */
39         u32                     raw_interval;
40
41         /* Current CLOCK_REALTIME time in seconds */
42         u64                     xtime_sec;
43         /* Clock shifted nano seconds */
44         u64                     xtime_nsec;
45
46         /* Difference between accumulated time and NTP time in ntp
47          * shifted nano seconds. */
48         s64                     ntp_error;
49         /* Shift conversion between clock shifted nano seconds and
50          * ntp shifted nano seconds. */
51         u32                     ntp_error_shift;
52
53         /*
54          * wall_to_monotonic is what we need to add to xtime (or xtime corrected
55          * for sub jiffie times) to get to monotonic time.  Monotonic is pegged
56          * at zero at system boot time, so wall_to_monotonic will be negative,
57          * however, we will ALWAYS keep the tv_nsec part positive so we can use
58          * the usual normalization.
59          *
60          * wall_to_monotonic is moved after resume from suspend for the
61          * monotonic time not to jump. We need to add total_sleep_time to
62          * wall_to_monotonic to get the real boot based time offset.
63          *
64          * - wall_to_monotonic is no longer the boot time, getboottime must be
65          * used instead.
66          */
67         struct timespec         wall_to_monotonic;
68         /* time spent in suspend */
69         struct timespec         total_sleep_time;
70         /* The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. */
71         struct timespec         raw_time;
72         /* Offset clock monotonic -> clock realtime */
73         ktime_t                 offs_real;
74         /* Offset clock monotonic -> clock boottime */
75         ktime_t                 offs_boot;
76         /* Seqlock for all timekeeper values */
77         seqlock_t               lock;
78 };
79
80 static struct timekeeper timekeeper;
81
82 /*
83  * This read-write spinlock protects us from races in SMP while
84  * playing with xtime.
85  */
86 __cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock);
87
88 /* flag for if timekeeping is suspended */
89 int __read_mostly timekeeping_suspended;
90
91 static inline void tk_normalize_xtime(struct timekeeper *tk)
92 {
93         while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
94                 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
95                 tk->xtime_sec++;
96         }
97 }
98
99 static struct timespec tk_xtime(struct timekeeper *tk)
100 {
101         struct timespec ts;
102
103         ts.tv_sec = tk->xtime_sec;
104         ts.tv_nsec = (long)(tk->xtime_nsec >> tk->shift);
105         return ts;
106 }
107
108 static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
109 {
110         tk->xtime_sec = ts->tv_sec;
111         tk->xtime_nsec = ts->tv_nsec << tk->shift;
112 }
113
114 static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
115 {
116         tk->xtime_sec += ts->tv_sec;
117         tk->xtime_nsec += ts->tv_nsec << tk->shift;
118 }
119
120 /**
121  * timekeeper_setup_internals - Set up internals to use clocksource clock.
122  *
123  * @clock:              Pointer to clocksource.
124  *
125  * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
126  * pair and interval request.
127  *
128  * Unless you're the timekeeping code, you should not be using this!
129  */
130 static void timekeeper_setup_internals(struct clocksource *clock)
131 {
132         cycle_t interval;
133         u64 tmp, ntpinterval;
134         struct clocksource *old_clock;
135
136         old_clock = timekeeper.clock;
137         timekeeper.clock = clock;
138         clock->cycle_last = clock->read(clock);
139
140         /* Do the ns -> cycle conversion first, using original mult */
141         tmp = NTP_INTERVAL_LENGTH;
142         tmp <<= clock->shift;
143         ntpinterval = tmp;
144         tmp += clock->mult/2;
145         do_div(tmp, clock->mult);
146         if (tmp == 0)
147                 tmp = 1;
148
149         interval = (cycle_t) tmp;
150         timekeeper.cycle_interval = interval;
151
152         /* Go back from cycles -> shifted ns */
153         timekeeper.xtime_interval = (u64) interval * clock->mult;
154         timekeeper.xtime_remainder = ntpinterval - timekeeper.xtime_interval;
155         timekeeper.raw_interval =
156                 ((u64) interval * clock->mult) >> clock->shift;
157
158          /* if changing clocks, convert xtime_nsec shift units */
159         if (old_clock) {
160                 int shift_change = clock->shift - old_clock->shift;
161                 if (shift_change < 0)
162                         timekeeper.xtime_nsec >>= -shift_change;
163                 else
164                         timekeeper.xtime_nsec <<= shift_change;
165         }
166         timekeeper.shift = clock->shift;
167
168         timekeeper.ntp_error = 0;
169         timekeeper.ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
170
171         /*
172          * The timekeeper keeps its own mult values for the currently
173          * active clocksource. These value will be adjusted via NTP
174          * to counteract clock drifting.
175          */
176         timekeeper.mult = clock->mult;
177 }
178
179 /* Timekeeper helper functions. */
180 static inline s64 timekeeping_get_ns(void)
181 {
182         cycle_t cycle_now, cycle_delta;
183         struct clocksource *clock;
184         s64 nsec;
185
186         /* read clocksource: */
187         clock = timekeeper.clock;
188         cycle_now = clock->read(clock);
189
190         /* calculate the delta since the last update_wall_time: */
191         cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
192
193         nsec = cycle_delta * timekeeper.mult + timekeeper.xtime_nsec;
194         return nsec >> timekeeper.shift;
195 }
196
197 static inline s64 timekeeping_get_ns_raw(void)
198 {
199         cycle_t cycle_now, cycle_delta;
200         struct clocksource *clock;
201
202         /* read clocksource: */
203         clock = timekeeper.clock;
204         cycle_now = clock->read(clock);
205
206         /* calculate the delta since the last update_wall_time: */
207         cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
208
209         /* return delta convert to nanoseconds. */
210         return clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
211 }
212
213 static void update_rt_offset(void)
214 {
215         struct timespec tmp, *wtm = &timekeeper.wall_to_monotonic;
216
217         set_normalized_timespec(&tmp, -wtm->tv_sec, -wtm->tv_nsec);
218         timekeeper.offs_real = timespec_to_ktime(tmp);
219 }
220
221 /* must hold write on timekeeper.lock */
222 static void timekeeping_update(bool clearntp)
223 {
224         struct timespec xt;
225
226         if (clearntp) {
227                 timekeeper.ntp_error = 0;
228                 ntp_clear();
229         }
230         update_rt_offset();
231         xt = tk_xtime(&timekeeper);
232         update_vsyscall(&xt, &timekeeper.wall_to_monotonic,
233                          timekeeper.clock, timekeeper.mult);
234 }
235
236
237 /**
238  * timekeeping_forward_now - update clock to the current time
239  *
240  * Forward the current clock to update its state since the last call to
241  * update_wall_time(). This is useful before significant clock changes,
242  * as it avoids having to deal with this time offset explicitly.
243  */
244 static void timekeeping_forward_now(void)
245 {
246         cycle_t cycle_now, cycle_delta;
247         struct clocksource *clock;
248         s64 nsec;
249
250         clock = timekeeper.clock;
251         cycle_now = clock->read(clock);
252         cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
253         clock->cycle_last = cycle_now;
254
255         timekeeper.xtime_nsec += cycle_delta * timekeeper.mult;
256
257         /* If arch requires, add in gettimeoffset() */
258         timekeeper.xtime_nsec += arch_gettimeoffset() << timekeeper.shift;
259
260         tk_normalize_xtime(&timekeeper);
261
262         nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
263         timespec_add_ns(&timekeeper.raw_time, nsec);
264 }
265
266 /**
267  * getnstimeofday - Returns the time of day in a timespec
268  * @ts:         pointer to the timespec to be set
269  *
270  * Returns the time of day in a timespec.
271  */
272 void getnstimeofday(struct timespec *ts)
273 {
274         unsigned long seq;
275         s64 nsecs = 0;
276
277         WARN_ON(timekeeping_suspended);
278
279         do {
280                 seq = read_seqbegin(&timekeeper.lock);
281
282                 ts->tv_sec = timekeeper.xtime_sec;
283                 ts->tv_nsec = timekeeping_get_ns();
284
285                 /* If arch requires, add in gettimeoffset() */
286                 nsecs += arch_gettimeoffset();
287
288         } while (read_seqretry(&timekeeper.lock, seq));
289
290         timespec_add_ns(ts, nsecs);
291 }
292 EXPORT_SYMBOL(getnstimeofday);
293
294 ktime_t ktime_get(void)
295 {
296         unsigned int seq;
297         s64 secs, nsecs;
298
299         WARN_ON(timekeeping_suspended);
300
301         do {
302                 seq = read_seqbegin(&timekeeper.lock);
303                 secs = timekeeper.xtime_sec +
304                                 timekeeper.wall_to_monotonic.tv_sec;
305                 nsecs = timekeeping_get_ns() +
306                                 timekeeper.wall_to_monotonic.tv_nsec;
307                 /* If arch requires, add in gettimeoffset() */
308                 nsecs += arch_gettimeoffset();
309
310         } while (read_seqretry(&timekeeper.lock, seq));
311         /*
312          * Use ktime_set/ktime_add_ns to create a proper ktime on
313          * 32-bit architectures without CONFIG_KTIME_SCALAR.
314          */
315         return ktime_add_ns(ktime_set(secs, 0), nsecs);
316 }
317 EXPORT_SYMBOL_GPL(ktime_get);
318
319 /**
320  * ktime_get_ts - get the monotonic clock in timespec format
321  * @ts:         pointer to timespec variable
322  *
323  * The function calculates the monotonic clock from the realtime
324  * clock and the wall_to_monotonic offset and stores the result
325  * in normalized timespec format in the variable pointed to by @ts.
326  */
327 void ktime_get_ts(struct timespec *ts)
328 {
329         struct timespec tomono;
330         unsigned int seq;
331
332         WARN_ON(timekeeping_suspended);
333
334         do {
335                 seq = read_seqbegin(&timekeeper.lock);
336                 ts->tv_sec = timekeeper.xtime_sec;
337                 ts->tv_nsec = timekeeping_get_ns();
338                 tomono = timekeeper.wall_to_monotonic;
339                 /* If arch requires, add in gettimeoffset() */
340                 ts->tv_nsec += arch_gettimeoffset();
341
342         } while (read_seqretry(&timekeeper.lock, seq));
343
344         set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
345                                 ts->tv_nsec + tomono.tv_nsec);
346 }
347 EXPORT_SYMBOL_GPL(ktime_get_ts);
348
349 #ifdef CONFIG_NTP_PPS
350
351 /**
352  * getnstime_raw_and_real - get day and raw monotonic time in timespec format
353  * @ts_raw:     pointer to the timespec to be set to raw monotonic time
354  * @ts_real:    pointer to the timespec to be set to the time of day
355  *
356  * This function reads both the time of day and raw monotonic time at the
357  * same time atomically and stores the resulting timestamps in timespec
358  * format.
359  */
360 void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
361 {
362         unsigned long seq;
363         s64 nsecs_raw, nsecs_real;
364
365         WARN_ON_ONCE(timekeeping_suspended);
366
367         do {
368                 u32 arch_offset;
369
370                 seq = read_seqbegin(&timekeeper.lock);
371
372                 *ts_raw = timekeeper.raw_time;
373                 ts_real->tv_sec = timekeeper.xtime_sec;
374                 ts_real->tv_nsec = 0;
375
376                 nsecs_raw = timekeeping_get_ns_raw();
377                 nsecs_real = timekeeping_get_ns();
378
379                 /* If arch requires, add in gettimeoffset() */
380                 arch_offset = arch_gettimeoffset();
381                 nsecs_raw += arch_offset;
382                 nsecs_real += arch_offset;
383
384         } while (read_seqretry(&timekeeper.lock, seq));
385
386         timespec_add_ns(ts_raw, nsecs_raw);
387         timespec_add_ns(ts_real, nsecs_real);
388 }
389 EXPORT_SYMBOL(getnstime_raw_and_real);
390
391 #endif /* CONFIG_NTP_PPS */
392
393 /**
394  * do_gettimeofday - Returns the time of day in a timeval
395  * @tv:         pointer to the timeval to be set
396  *
397  * NOTE: Users should be converted to using getnstimeofday()
398  */
399 void do_gettimeofday(struct timeval *tv)
400 {
401         struct timespec now;
402
403         getnstimeofday(&now);
404         tv->tv_sec = now.tv_sec;
405         tv->tv_usec = now.tv_nsec/1000;
406 }
407 EXPORT_SYMBOL(do_gettimeofday);
408
409 /**
410  * do_settimeofday - Sets the time of day
411  * @tv:         pointer to the timespec variable containing the new time
412  *
413  * Sets the time of day to the new time and update NTP and notify hrtimers
414  */
415 int do_settimeofday(const struct timespec *tv)
416 {
417         struct timespec ts_delta, xt;
418         unsigned long flags;
419
420         if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
421                 return -EINVAL;
422
423         write_seqlock_irqsave(&timekeeper.lock, flags);
424
425         timekeeping_forward_now();
426
427         xt = tk_xtime(&timekeeper);
428         ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
429         ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
430
431         timekeeper.wall_to_monotonic =
432                         timespec_sub(timekeeper.wall_to_monotonic, ts_delta);
433
434         tk_set_xtime(&timekeeper, tv);
435
436         timekeeping_update(true);
437
438         write_sequnlock_irqrestore(&timekeeper.lock, flags);
439
440         /* signal hrtimers about time change */
441         clock_was_set();
442
443         return 0;
444 }
445 EXPORT_SYMBOL(do_settimeofday);
446
447
448 /**
449  * timekeeping_inject_offset - Adds or subtracts from the current time.
450  * @tv:         pointer to the timespec variable containing the offset
451  *
452  * Adds or subtracts an offset value from the current time.
453  */
454 int timekeeping_inject_offset(struct timespec *ts)
455 {
456         unsigned long flags;
457
458         if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
459                 return -EINVAL;
460
461         write_seqlock_irqsave(&timekeeper.lock, flags);
462
463         timekeeping_forward_now();
464
465
466         tk_xtime_add(&timekeeper, ts);
467         timekeeper.wall_to_monotonic =
468                                 timespec_sub(timekeeper.wall_to_monotonic, *ts);
469
470         timekeeping_update(true);
471
472         write_sequnlock_irqrestore(&timekeeper.lock, flags);
473
474         /* signal hrtimers about time change */
475         clock_was_set();
476
477         return 0;
478 }
479 EXPORT_SYMBOL(timekeeping_inject_offset);
480
481 /**
482  * change_clocksource - Swaps clocksources if a new one is available
483  *
484  * Accumulates current time interval and initializes new clocksource
485  */
486 static int change_clocksource(void *data)
487 {
488         struct clocksource *new, *old;
489         unsigned long flags;
490
491         new = (struct clocksource *) data;
492
493         write_seqlock_irqsave(&timekeeper.lock, flags);
494
495         timekeeping_forward_now();
496         if (!new->enable || new->enable(new) == 0) {
497                 old = timekeeper.clock;
498                 timekeeper_setup_internals(new);
499                 if (old->disable)
500                         old->disable(old);
501         }
502         timekeeping_update(true);
503
504         write_sequnlock_irqrestore(&timekeeper.lock, flags);
505
506         return 0;
507 }
508
509 /**
510  * timekeeping_notify - Install a new clock source
511  * @clock:              pointer to the clock source
512  *
513  * This function is called from clocksource.c after a new, better clock
514  * source has been registered. The caller holds the clocksource_mutex.
515  */
516 void timekeeping_notify(struct clocksource *clock)
517 {
518         if (timekeeper.clock == clock)
519                 return;
520         stop_machine(change_clocksource, clock, NULL);
521         tick_clock_notify();
522 }
523
524 /**
525  * ktime_get_real - get the real (wall-) time in ktime_t format
526  *
527  * returns the time in ktime_t format
528  */
529 ktime_t ktime_get_real(void)
530 {
531         struct timespec now;
532
533         getnstimeofday(&now);
534
535         return timespec_to_ktime(now);
536 }
537 EXPORT_SYMBOL_GPL(ktime_get_real);
538
539 /**
540  * getrawmonotonic - Returns the raw monotonic time in a timespec
541  * @ts:         pointer to the timespec to be set
542  *
543  * Returns the raw monotonic time (completely un-modified by ntp)
544  */
545 void getrawmonotonic(struct timespec *ts)
546 {
547         unsigned long seq;
548         s64 nsecs;
549
550         do {
551                 seq = read_seqbegin(&timekeeper.lock);
552                 nsecs = timekeeping_get_ns_raw();
553                 *ts = timekeeper.raw_time;
554
555         } while (read_seqretry(&timekeeper.lock, seq));
556
557         timespec_add_ns(ts, nsecs);
558 }
559 EXPORT_SYMBOL(getrawmonotonic);
560
561
562 /**
563  * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
564  */
565 int timekeeping_valid_for_hres(void)
566 {
567         unsigned long seq;
568         int ret;
569
570         do {
571                 seq = read_seqbegin(&timekeeper.lock);
572
573                 ret = timekeeper.clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
574
575         } while (read_seqretry(&timekeeper.lock, seq));
576
577         return ret;
578 }
579
580 /**
581  * timekeeping_max_deferment - Returns max time the clocksource can be deferred
582  */
583 u64 timekeeping_max_deferment(void)
584 {
585         unsigned long seq;
586         u64 ret;
587
588         do {
589                 seq = read_seqbegin(&timekeeper.lock);
590
591                 ret = timekeeper.clock->max_idle_ns;
592
593         } while (read_seqretry(&timekeeper.lock, seq));
594
595         return ret;
596 }
597
598 /**
599  * read_persistent_clock -  Return time from the persistent clock.
600  *
601  * Weak dummy function for arches that do not yet support it.
602  * Reads the time from the battery backed persistent clock.
603  * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
604  *
605  *  XXX - Do be sure to remove it once all arches implement it.
606  */
607 void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
608 {
609         ts->tv_sec = 0;
610         ts->tv_nsec = 0;
611 }
612
613 /**
614  * read_boot_clock -  Return time of the system start.
615  *
616  * Weak dummy function for arches that do not yet support it.
617  * Function to read the exact time the system has been started.
618  * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
619  *
620  *  XXX - Do be sure to remove it once all arches implement it.
621  */
622 void __attribute__((weak)) read_boot_clock(struct timespec *ts)
623 {
624         ts->tv_sec = 0;
625         ts->tv_nsec = 0;
626 }
627
628 /*
629  * timekeeping_init - Initializes the clocksource and common timekeeping values
630  */
631 void __init timekeeping_init(void)
632 {
633         struct clocksource *clock;
634         unsigned long flags;
635         struct timespec now, boot;
636
637         read_persistent_clock(&now);
638         read_boot_clock(&boot);
639
640         seqlock_init(&timekeeper.lock);
641
642         ntp_init();
643
644         write_seqlock_irqsave(&timekeeper.lock, flags);
645         clock = clocksource_default_clock();
646         if (clock->enable)
647                 clock->enable(clock);
648         timekeeper_setup_internals(clock);
649
650         tk_set_xtime(&timekeeper, &now);
651         timekeeper.raw_time.tv_sec = 0;
652         timekeeper.raw_time.tv_nsec = 0;
653         if (boot.tv_sec == 0 && boot.tv_nsec == 0)
654                 boot = tk_xtime(&timekeeper);
655
656         set_normalized_timespec(&timekeeper.wall_to_monotonic,
657                                 -boot.tv_sec, -boot.tv_nsec);
658         update_rt_offset();
659         timekeeper.total_sleep_time.tv_sec = 0;
660         timekeeper.total_sleep_time.tv_nsec = 0;
661         write_sequnlock_irqrestore(&timekeeper.lock, flags);
662 }
663
664 /* time in seconds when suspend began */
665 static struct timespec timekeeping_suspend_time;
666
667 static void update_sleep_time(struct timespec t)
668 {
669         timekeeper.total_sleep_time = t;
670         timekeeper.offs_boot = timespec_to_ktime(t);
671 }
672
673 /**
674  * __timekeeping_inject_sleeptime - Internal function to add sleep interval
675  * @delta: pointer to a timespec delta value
676  *
677  * Takes a timespec offset measuring a suspend interval and properly
678  * adds the sleep offset to the timekeeping variables.
679  */
680 static void __timekeeping_inject_sleeptime(struct timespec *delta)
681 {
682         if (!timespec_valid(delta)) {
683                 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
684                                         "sleep delta value!\n");
685                 return;
686         }
687
688         tk_xtime_add(&timekeeper, delta);
689         timekeeper.wall_to_monotonic =
690                         timespec_sub(timekeeper.wall_to_monotonic, *delta);
691         update_sleep_time(timespec_add(timekeeper.total_sleep_time, *delta));
692 }
693
694
695 /**
696  * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
697  * @delta: pointer to a timespec delta value
698  *
699  * This hook is for architectures that cannot support read_persistent_clock
700  * because their RTC/persistent clock is only accessible when irqs are enabled.
701  *
702  * This function should only be called by rtc_resume(), and allows
703  * a suspend offset to be injected into the timekeeping values.
704  */
705 void timekeeping_inject_sleeptime(struct timespec *delta)
706 {
707         unsigned long flags;
708         struct timespec ts;
709
710         /* Make sure we don't set the clock twice */
711         read_persistent_clock(&ts);
712         if (!(ts.tv_sec == 0 && ts.tv_nsec == 0))
713                 return;
714
715         write_seqlock_irqsave(&timekeeper.lock, flags);
716
717         timekeeping_forward_now();
718
719         __timekeeping_inject_sleeptime(delta);
720
721         timekeeping_update(true);
722
723         write_sequnlock_irqrestore(&timekeeper.lock, flags);
724
725         /* signal hrtimers about time change */
726         clock_was_set();
727 }
728
729
730 /**
731  * timekeeping_resume - Resumes the generic timekeeping subsystem.
732  *
733  * This is for the generic clocksource timekeeping.
734  * xtime/wall_to_monotonic/jiffies/etc are
735  * still managed by arch specific suspend/resume code.
736  */
737 static void timekeeping_resume(void)
738 {
739         unsigned long flags;
740         struct timespec ts;
741
742         read_persistent_clock(&ts);
743
744         clocksource_resume();
745
746         write_seqlock_irqsave(&timekeeper.lock, flags);
747
748         if (timespec_compare(&ts, &timekeeping_suspend_time) > 0) {
749                 ts = timespec_sub(ts, timekeeping_suspend_time);
750                 __timekeeping_inject_sleeptime(&ts);
751         }
752         /* re-base the last cycle value */
753         timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock);
754         timekeeper.ntp_error = 0;
755         timekeeping_suspended = 0;
756         write_sequnlock_irqrestore(&timekeeper.lock, flags);
757
758         touch_softlockup_watchdog();
759
760         clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
761
762         /* Resume hrtimers */
763         hrtimers_resume();
764 }
765
766 static int timekeeping_suspend(void)
767 {
768         unsigned long flags;
769         struct timespec         delta, delta_delta;
770         static struct timespec  old_delta;
771
772         read_persistent_clock(&timekeeping_suspend_time);
773
774         write_seqlock_irqsave(&timekeeper.lock, flags);
775         timekeeping_forward_now();
776         timekeeping_suspended = 1;
777
778         /*
779          * To avoid drift caused by repeated suspend/resumes,
780          * which each can add ~1 second drift error,
781          * try to compensate so the difference in system time
782          * and persistent_clock time stays close to constant.
783          */
784         delta = timespec_sub(tk_xtime(&timekeeper), timekeeping_suspend_time);
785         delta_delta = timespec_sub(delta, old_delta);
786         if (abs(delta_delta.tv_sec)  >= 2) {
787                 /*
788                  * if delta_delta is too large, assume time correction
789                  * has occured and set old_delta to the current delta.
790                  */
791                 old_delta = delta;
792         } else {
793                 /* Otherwise try to adjust old_system to compensate */
794                 timekeeping_suspend_time =
795                         timespec_add(timekeeping_suspend_time, delta_delta);
796         }
797         write_sequnlock_irqrestore(&timekeeper.lock, flags);
798
799         clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
800         clocksource_suspend();
801
802         return 0;
803 }
804
805 /* sysfs resume/suspend bits for timekeeping */
806 static struct syscore_ops timekeeping_syscore_ops = {
807         .resume         = timekeeping_resume,
808         .suspend        = timekeeping_suspend,
809 };
810
811 static int __init timekeeping_init_ops(void)
812 {
813         register_syscore_ops(&timekeeping_syscore_ops);
814         return 0;
815 }
816
817 device_initcall(timekeeping_init_ops);
818
819 /*
820  * If the error is already larger, we look ahead even further
821  * to compensate for late or lost adjustments.
822  */
823 static __always_inline int timekeeping_bigadjust(s64 error, s64 *interval,
824                                                  s64 *offset)
825 {
826         s64 tick_error, i;
827         u32 look_ahead, adj;
828         s32 error2, mult;
829
830         /*
831          * Use the current error value to determine how much to look ahead.
832          * The larger the error the slower we adjust for it to avoid problems
833          * with losing too many ticks, otherwise we would overadjust and
834          * produce an even larger error.  The smaller the adjustment the
835          * faster we try to adjust for it, as lost ticks can do less harm
836          * here.  This is tuned so that an error of about 1 msec is adjusted
837          * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
838          */
839         error2 = timekeeper.ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
840         error2 = abs(error2);
841         for (look_ahead = 0; error2 > 0; look_ahead++)
842                 error2 >>= 2;
843
844         /*
845          * Now calculate the error in (1 << look_ahead) ticks, but first
846          * remove the single look ahead already included in the error.
847          */
848         tick_error = ntp_tick_length() >> (timekeeper.ntp_error_shift + 1);
849         tick_error -= timekeeper.xtime_interval >> 1;
850         error = ((error - tick_error) >> look_ahead) + tick_error;
851
852         /* Finally calculate the adjustment shift value.  */
853         i = *interval;
854         mult = 1;
855         if (error < 0) {
856                 error = -error;
857                 *interval = -*interval;
858                 *offset = -*offset;
859                 mult = -1;
860         }
861         for (adj = 0; error > i; adj++)
862                 error >>= 1;
863
864         *interval <<= adj;
865         *offset <<= adj;
866         return mult << adj;
867 }
868
869 /*
870  * Adjust the multiplier to reduce the error value,
871  * this is optimized for the most common adjustments of -1,0,1,
872  * for other values we can do a bit more work.
873  */
874 static void timekeeping_adjust(s64 offset)
875 {
876         s64 error, interval = timekeeper.cycle_interval;
877         int adj;
878
879         /*
880          * The point of this is to check if the error is greater than half
881          * an interval.
882          *
883          * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
884          *
885          * Note we subtract one in the shift, so that error is really error*2.
886          * This "saves" dividing(shifting) interval twice, but keeps the
887          * (error > interval) comparison as still measuring if error is
888          * larger than half an interval.
889          *
890          * Note: It does not "save" on aggravation when reading the code.
891          */
892         error = timekeeper.ntp_error >> (timekeeper.ntp_error_shift - 1);
893         if (error > interval) {
894                 /*
895                  * We now divide error by 4(via shift), which checks if
896                  * the error is greater than twice the interval.
897                  * If it is greater, we need a bigadjust, if its smaller,
898                  * we can adjust by 1.
899                  */
900                 error >>= 2;
901                 /*
902                  * XXX - In update_wall_time, we round up to the next
903                  * nanosecond, and store the amount rounded up into
904                  * the error. This causes the likely below to be unlikely.
905                  *
906                  * The proper fix is to avoid rounding up by using
907                  * the high precision timekeeper.xtime_nsec instead of
908                  * xtime.tv_nsec everywhere. Fixing this will take some
909                  * time.
910                  */
911                 if (likely(error <= interval))
912                         adj = 1;
913                 else
914                         adj = timekeeping_bigadjust(error, &interval, &offset);
915         } else if (error < -interval) {
916                 /* See comment above, this is just switched for the negative */
917                 error >>= 2;
918                 if (likely(error >= -interval)) {
919                         adj = -1;
920                         interval = -interval;
921                         offset = -offset;
922                 } else
923                         adj = timekeeping_bigadjust(error, &interval, &offset);
924         } else /* No adjustment needed */
925                 return;
926
927         if (unlikely(timekeeper.clock->maxadj &&
928                         (timekeeper.mult + adj >
929                         timekeeper.clock->mult + timekeeper.clock->maxadj))) {
930                 printk_once(KERN_WARNING
931                         "Adjusting %s more than 11%% (%ld vs %ld)\n",
932                         timekeeper.clock->name, (long)timekeeper.mult + adj,
933                         (long)timekeeper.clock->mult +
934                                 timekeeper.clock->maxadj);
935         }
936         /*
937          * So the following can be confusing.
938          *
939          * To keep things simple, lets assume adj == 1 for now.
940          *
941          * When adj != 1, remember that the interval and offset values
942          * have been appropriately scaled so the math is the same.
943          *
944          * The basic idea here is that we're increasing the multiplier
945          * by one, this causes the xtime_interval to be incremented by
946          * one cycle_interval. This is because:
947          *      xtime_interval = cycle_interval * mult
948          * So if mult is being incremented by one:
949          *      xtime_interval = cycle_interval * (mult + 1)
950          * Its the same as:
951          *      xtime_interval = (cycle_interval * mult) + cycle_interval
952          * Which can be shortened to:
953          *      xtime_interval += cycle_interval
954          *
955          * So offset stores the non-accumulated cycles. Thus the current
956          * time (in shifted nanoseconds) is:
957          *      now = (offset * adj) + xtime_nsec
958          * Now, even though we're adjusting the clock frequency, we have
959          * to keep time consistent. In other words, we can't jump back
960          * in time, and we also want to avoid jumping forward in time.
961          *
962          * So given the same offset value, we need the time to be the same
963          * both before and after the freq adjustment.
964          *      now = (offset * adj_1) + xtime_nsec_1
965          *      now = (offset * adj_2) + xtime_nsec_2
966          * So:
967          *      (offset * adj_1) + xtime_nsec_1 =
968          *              (offset * adj_2) + xtime_nsec_2
969          * And we know:
970          *      adj_2 = adj_1 + 1
971          * So:
972          *      (offset * adj_1) + xtime_nsec_1 =
973          *              (offset * (adj_1+1)) + xtime_nsec_2
974          *      (offset * adj_1) + xtime_nsec_1 =
975          *              (offset * adj_1) + offset + xtime_nsec_2
976          * Canceling the sides:
977          *      xtime_nsec_1 = offset + xtime_nsec_2
978          * Which gives us:
979          *      xtime_nsec_2 = xtime_nsec_1 - offset
980          * Which simplfies to:
981          *      xtime_nsec -= offset
982          *
983          * XXX - TODO: Doc ntp_error calculation.
984          */
985         timekeeper.mult += adj;
986         timekeeper.xtime_interval += interval;
987         timekeeper.xtime_nsec -= offset;
988         timekeeper.ntp_error -= (interval - offset) <<
989                                 timekeeper.ntp_error_shift;
990 }
991
992
993 /**
994  * logarithmic_accumulation - shifted accumulation of cycles
995  *
996  * This functions accumulates a shifted interval of cycles into
997  * into a shifted interval nanoseconds. Allows for O(log) accumulation
998  * loop.
999  *
1000  * Returns the unconsumed cycles.
1001  */
1002 static cycle_t logarithmic_accumulation(cycle_t offset, u32 shift)
1003 {
1004         u64 nsecps = (u64)NSEC_PER_SEC << timekeeper.shift;
1005         u64 raw_nsecs;
1006
1007         /* If the offset is smaller than a shifted interval, do nothing */
1008         if (offset < timekeeper.cycle_interval<<shift)
1009                 return offset;
1010
1011         /* Accumulate one shifted interval */
1012         offset -= timekeeper.cycle_interval << shift;
1013         timekeeper.clock->cycle_last += timekeeper.cycle_interval << shift;
1014
1015         timekeeper.xtime_nsec += timekeeper.xtime_interval << shift;
1016         while (timekeeper.xtime_nsec >= nsecps) {
1017                 int leap;
1018                 timekeeper.xtime_nsec -= nsecps;
1019                 timekeeper.xtime_sec++;
1020                 leap = second_overflow(timekeeper.xtime_sec);
1021                 timekeeper.xtime_sec += leap;
1022                 timekeeper.wall_to_monotonic.tv_sec -= leap;
1023                 if (leap)
1024                         clock_was_set_delayed();
1025         }
1026
1027         /* Accumulate raw time */
1028         raw_nsecs = timekeeper.raw_interval << shift;
1029         raw_nsecs += timekeeper.raw_time.tv_nsec;
1030         if (raw_nsecs >= NSEC_PER_SEC) {
1031                 u64 raw_secs = raw_nsecs;
1032                 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
1033                 timekeeper.raw_time.tv_sec += raw_secs;
1034         }
1035         timekeeper.raw_time.tv_nsec = raw_nsecs;
1036
1037         /* Accumulate error between NTP and clock interval */
1038         timekeeper.ntp_error += ntp_tick_length() << shift;
1039         timekeeper.ntp_error -=
1040             (timekeeper.xtime_interval + timekeeper.xtime_remainder) <<
1041                                 (timekeeper.ntp_error_shift + shift);
1042
1043         return offset;
1044 }
1045
1046
1047 /**
1048  * update_wall_time - Uses the current clocksource to increment the wall time
1049  *
1050  */
1051 static void update_wall_time(void)
1052 {
1053         struct clocksource *clock;
1054         cycle_t offset;
1055         int shift = 0, maxshift;
1056         unsigned long flags;
1057         s64 remainder;
1058
1059         write_seqlock_irqsave(&timekeeper.lock, flags);
1060
1061         /* Make sure we're fully resumed: */
1062         if (unlikely(timekeeping_suspended))
1063                 goto out;
1064
1065         clock = timekeeper.clock;
1066
1067 #ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
1068         offset = timekeeper.cycle_interval;
1069 #else
1070         offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
1071 #endif
1072
1073         /*
1074          * With NO_HZ we may have to accumulate many cycle_intervals
1075          * (think "ticks") worth of time at once. To do this efficiently,
1076          * we calculate the largest doubling multiple of cycle_intervals
1077          * that is smaller than the offset.  We then accumulate that
1078          * chunk in one go, and then try to consume the next smaller
1079          * doubled multiple.
1080          */
1081         shift = ilog2(offset) - ilog2(timekeeper.cycle_interval);
1082         shift = max(0, shift);
1083         /* Bound shift to one less than what overflows tick_length */
1084         maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
1085         shift = min(shift, maxshift);
1086         while (offset >= timekeeper.cycle_interval) {
1087                 offset = logarithmic_accumulation(offset, shift);
1088                 if(offset < timekeeper.cycle_interval<<shift)
1089                         shift--;
1090         }
1091
1092         /* correct the clock when NTP error is too big */
1093         timekeeping_adjust(offset);
1094
1095         /*
1096          * Since in the loop above, we accumulate any amount of time
1097          * in xtime_nsec over a second into xtime.tv_sec, its possible for
1098          * xtime_nsec to be fairly small after the loop. Further, if we're
1099          * slightly speeding the clocksource up in timekeeping_adjust(),
1100          * its possible the required corrective factor to xtime_nsec could
1101          * cause it to underflow.
1102          *
1103          * Now, we cannot simply roll the accumulated second back, since
1104          * the NTP subsystem has been notified via second_overflow. So
1105          * instead we push xtime_nsec forward by the amount we underflowed,
1106          * and add that amount into the error.
1107          *
1108          * We'll correct this error next time through this function, when
1109          * xtime_nsec is not as small.
1110          */
1111         if (unlikely((s64)timekeeper.xtime_nsec < 0)) {
1112                 s64 neg = -(s64)timekeeper.xtime_nsec;
1113                 timekeeper.xtime_nsec = 0;
1114                 timekeeper.ntp_error += neg << timekeeper.ntp_error_shift;
1115         }
1116
1117         /*
1118         * Store only full nanoseconds into xtime_nsec after rounding
1119         * it up and add the remainder to the error difference.
1120         * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1121         * by truncating the remainder in vsyscalls. However, it causes
1122         * additional work to be done in timekeeping_adjust(). Once
1123         * the vsyscall implementations are converted to use xtime_nsec
1124         * (shifted nanoseconds), this can be killed.
1125         */
1126         remainder = timekeeper.xtime_nsec & ((1 << timekeeper.shift) - 1);
1127         timekeeper.xtime_nsec -= remainder;
1128         timekeeper.xtime_nsec += 1 << timekeeper.shift;
1129         timekeeper.ntp_error += remainder << timekeeper.ntp_error_shift;
1130
1131         /*
1132          * Finally, make sure that after the rounding
1133          * xtime_nsec isn't larger than NSEC_PER_SEC
1134          */
1135         if (unlikely(timekeeper.xtime_nsec >=
1136                         ((u64)NSEC_PER_SEC << timekeeper.shift))) {
1137                 int leap;
1138                 timekeeper.xtime_nsec -= (u64)NSEC_PER_SEC << timekeeper.shift;
1139                 timekeeper.xtime_sec++;
1140                 leap = second_overflow(timekeeper.xtime_sec);
1141                 timekeeper.xtime_sec += leap;
1142                 timekeeper.wall_to_monotonic.tv_sec -= leap;
1143                 if (leap)
1144                         clock_was_set_delayed();
1145         }
1146
1147         timekeeping_update(false);
1148
1149 out:
1150         write_sequnlock_irqrestore(&timekeeper.lock, flags);
1151
1152 }
1153
1154 /**
1155  * getboottime - Return the real time of system boot.
1156  * @ts:         pointer to the timespec to be set
1157  *
1158  * Returns the wall-time of boot in a timespec.
1159  *
1160  * This is based on the wall_to_monotonic offset and the total suspend
1161  * time. Calls to settimeofday will affect the value returned (which
1162  * basically means that however wrong your real time clock is at boot time,
1163  * you get the right time here).
1164  */
1165 void getboottime(struct timespec *ts)
1166 {
1167         struct timespec boottime = {
1168                 .tv_sec = timekeeper.wall_to_monotonic.tv_sec +
1169                                 timekeeper.total_sleep_time.tv_sec,
1170                 .tv_nsec = timekeeper.wall_to_monotonic.tv_nsec +
1171                                 timekeeper.total_sleep_time.tv_nsec
1172         };
1173
1174         set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
1175 }
1176 EXPORT_SYMBOL_GPL(getboottime);
1177
1178
1179 /**
1180  * get_monotonic_boottime - Returns monotonic time since boot
1181  * @ts:         pointer to the timespec to be set
1182  *
1183  * Returns the monotonic time since boot in a timespec.
1184  *
1185  * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1186  * includes the time spent in suspend.
1187  */
1188 void get_monotonic_boottime(struct timespec *ts)
1189 {
1190         struct timespec tomono, sleep;
1191         unsigned int seq;
1192
1193         WARN_ON(timekeeping_suspended);
1194
1195         do {
1196                 seq = read_seqbegin(&timekeeper.lock);
1197                 ts->tv_sec = timekeeper.xtime_sec;
1198                 ts->tv_nsec = timekeeping_get_ns();
1199                 tomono = timekeeper.wall_to_monotonic;
1200                 sleep = timekeeper.total_sleep_time;
1201
1202         } while (read_seqretry(&timekeeper.lock, seq));
1203
1204         set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec + sleep.tv_sec,
1205                         ts->tv_nsec + tomono.tv_nsec + sleep.tv_nsec);
1206 }
1207 EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1208
1209 /**
1210  * ktime_get_boottime - Returns monotonic time since boot in a ktime
1211  *
1212  * Returns the monotonic time since boot in a ktime
1213  *
1214  * This is similar to CLOCK_MONTONIC/ktime_get, but also
1215  * includes the time spent in suspend.
1216  */
1217 ktime_t ktime_get_boottime(void)
1218 {
1219         struct timespec ts;
1220
1221         get_monotonic_boottime(&ts);
1222         return timespec_to_ktime(ts);
1223 }
1224 EXPORT_SYMBOL_GPL(ktime_get_boottime);
1225
1226 /**
1227  * monotonic_to_bootbased - Convert the monotonic time to boot based.
1228  * @ts:         pointer to the timespec to be converted
1229  */
1230 void monotonic_to_bootbased(struct timespec *ts)
1231 {
1232         *ts = timespec_add(*ts, timekeeper.total_sleep_time);
1233 }
1234 EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
1235
1236 unsigned long get_seconds(void)
1237 {
1238         return timekeeper.xtime_sec;
1239 }
1240 EXPORT_SYMBOL(get_seconds);
1241
1242 struct timespec __current_kernel_time(void)
1243 {
1244         return tk_xtime(&timekeeper);
1245 }
1246
1247 struct timespec current_kernel_time(void)
1248 {
1249         struct timespec now;
1250         unsigned long seq;
1251
1252         do {
1253                 seq = read_seqbegin(&timekeeper.lock);
1254
1255                 now = tk_xtime(&timekeeper);
1256         } while (read_seqretry(&timekeeper.lock, seq));
1257
1258         return now;
1259 }
1260 EXPORT_SYMBOL(current_kernel_time);
1261
1262 struct timespec get_monotonic_coarse(void)
1263 {
1264         struct timespec now, mono;
1265         unsigned long seq;
1266
1267         do {
1268                 seq = read_seqbegin(&timekeeper.lock);
1269
1270                 now = tk_xtime(&timekeeper);
1271                 mono = timekeeper.wall_to_monotonic;
1272         } while (read_seqretry(&timekeeper.lock, seq));
1273
1274         set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1275                                 now.tv_nsec + mono.tv_nsec);
1276         return now;
1277 }
1278
1279 /*
1280  * The 64-bit jiffies value is not atomic - you MUST NOT read it
1281  * without sampling the sequence number in xtime_lock.
1282  * jiffies is defined in the linker script...
1283  */
1284 void do_timer(unsigned long ticks)
1285 {
1286         jiffies_64 += ticks;
1287         update_wall_time();
1288         calc_global_load(ticks);
1289 }
1290
1291 /**
1292  * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1293  *    and sleep offsets.
1294  * @xtim:       pointer to timespec to be set with xtime
1295  * @wtom:       pointer to timespec to be set with wall_to_monotonic
1296  * @sleep:      pointer to timespec to be set with time in suspend
1297  */
1298 void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1299                                 struct timespec *wtom, struct timespec *sleep)
1300 {
1301         unsigned long seq;
1302
1303         do {
1304                 seq = read_seqbegin(&timekeeper.lock);
1305                 *xtim = tk_xtime(&timekeeper);
1306                 *wtom = timekeeper.wall_to_monotonic;
1307                 *sleep = timekeeper.total_sleep_time;
1308         } while (read_seqretry(&timekeeper.lock, seq));
1309 }
1310
1311 #ifdef CONFIG_HIGH_RES_TIMERS
1312 /**
1313  * ktime_get_update_offsets - hrtimer helper
1314  * @offs_real:  pointer to storage for monotonic -> realtime offset
1315  * @offs_boot:  pointer to storage for monotonic -> boottime offset
1316  *
1317  * Returns current monotonic time and updates the offsets
1318  * Called from hrtimer_interupt() or retrigger_next_event()
1319  */
1320 ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot)
1321 {
1322         ktime_t now;
1323         unsigned int seq;
1324         u64 secs, nsecs;
1325
1326         do {
1327                 seq = read_seqbegin(&timekeeper.lock);
1328
1329                 secs = timekeeper.xtime_sec;
1330                 nsecs = timekeeping_get_ns();
1331                 /* If arch requires, add in gettimeoffset() */
1332                 nsecs += arch_gettimeoffset();
1333
1334                 *offs_real = timekeeper.offs_real;
1335                 *offs_boot = timekeeper.offs_boot;
1336         } while (read_seqretry(&timekeeper.lock, seq));
1337
1338         now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1339         now = ktime_sub(now, *offs_real);
1340         return now;
1341 }
1342 #endif
1343
1344 /**
1345  * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1346  */
1347 ktime_t ktime_get_monotonic_offset(void)
1348 {
1349         unsigned long seq;
1350         struct timespec wtom;
1351
1352         do {
1353                 seq = read_seqbegin(&timekeeper.lock);
1354                 wtom = timekeeper.wall_to_monotonic;
1355         } while (read_seqretry(&timekeeper.lock, seq));
1356
1357         return timespec_to_ktime(wtom);
1358 }
1359 EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1360
1361
1362 /**
1363  * xtime_update() - advances the timekeeping infrastructure
1364  * @ticks:      number of ticks, that have elapsed since the last call.
1365  *
1366  * Must be called with interrupts disabled.
1367  */
1368 void xtime_update(unsigned long ticks)
1369 {
1370         write_seqlock(&xtime_lock);
1371         do_timer(ticks);
1372         write_sequnlock(&xtime_lock);
1373 }