Merge branch 'x86-asm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / kernel / timer.c
1 /*
2  *  linux/kernel/timer.c
3  *
4  *  Kernel internal timers, basic process system calls
5  *
6  *  Copyright (C) 1991, 1992  Linus Torvalds
7  *
8  *  1997-01-28  Modified by Finn Arne Gangstad to make timers scale better.
9  *
10  *  1997-09-10  Updated NTP code according to technical memorandum Jan '96
11  *              "A Kernel Model for Precision Timekeeping" by Dave Mills
12  *  1998-12-24  Fixed a xtime SMP race (we need the xtime_lock rw spinlock to
13  *              serialize accesses to xtime/lost_ticks).
14  *                              Copyright (C) 1998  Andrea Arcangeli
15  *  1999-03-10  Improved NTP compatibility by Ulrich Windl
16  *  2002-05-31  Move sys_sysinfo here and make its locking sane, Robert Love
17  *  2000-10-05  Implemented scalable SMP per-CPU timer handling.
18  *                              Copyright (C) 2000, 2001, 2002  Ingo Molnar
19  *              Designed by David S. Miller, Alexey Kuznetsov and Ingo Molnar
20  */
21
22 #include <linux/kernel_stat.h>
23 #include <linux/module.h>
24 #include <linux/interrupt.h>
25 #include <linux/percpu.h>
26 #include <linux/init.h>
27 #include <linux/mm.h>
28 #include <linux/swap.h>
29 #include <linux/pid_namespace.h>
30 #include <linux/notifier.h>
31 #include <linux/thread_info.h>
32 #include <linux/time.h>
33 #include <linux/jiffies.h>
34 #include <linux/posix-timers.h>
35 #include <linux/cpu.h>
36 #include <linux/syscalls.h>
37 #include <linux/delay.h>
38 #include <linux/tick.h>
39 #include <linux/kallsyms.h>
40 #include <linux/perf_event.h>
41 #include <linux/sched.h>
42 #include <linux/slab.h>
43
44 #include <asm/uaccess.h>
45 #include <asm/unistd.h>
46 #include <asm/div64.h>
47 #include <asm/timex.h>
48 #include <asm/io.h>
49
50 #define CREATE_TRACE_POINTS
51 #include <trace/events/timer.h>
52
53 u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES;
54
55 EXPORT_SYMBOL(jiffies_64);
56
57 /*
58  * per-CPU timer vector definitions:
59  */
60 #define TVN_BITS (CONFIG_BASE_SMALL ? 4 : 6)
61 #define TVR_BITS (CONFIG_BASE_SMALL ? 6 : 8)
62 #define TVN_SIZE (1 << TVN_BITS)
63 #define TVR_SIZE (1 << TVR_BITS)
64 #define TVN_MASK (TVN_SIZE - 1)
65 #define TVR_MASK (TVR_SIZE - 1)
66
67 struct tvec {
68         struct list_head vec[TVN_SIZE];
69 };
70
71 struct tvec_root {
72         struct list_head vec[TVR_SIZE];
73 };
74
75 struct tvec_base {
76         spinlock_t lock;
77         struct timer_list *running_timer;
78         unsigned long timer_jiffies;
79         unsigned long next_timer;
80         struct tvec_root tv1;
81         struct tvec tv2;
82         struct tvec tv3;
83         struct tvec tv4;
84         struct tvec tv5;
85 } ____cacheline_aligned;
86
87 struct tvec_base boot_tvec_bases;
88 EXPORT_SYMBOL(boot_tvec_bases);
89 static DEFINE_PER_CPU(struct tvec_base *, tvec_bases) = &boot_tvec_bases;
90
91 /*
92  * Note that all tvec_bases are 2 byte aligned and lower bit of
93  * base in timer_list is guaranteed to be zero. Use the LSB for
94  * the new flag to indicate whether the timer is deferrable
95  */
96 #define TBASE_DEFERRABLE_FLAG           (0x1)
97
98 /* Functions below help us manage 'deferrable' flag */
99 static inline unsigned int tbase_get_deferrable(struct tvec_base *base)
100 {
101         return ((unsigned int)(unsigned long)base & TBASE_DEFERRABLE_FLAG);
102 }
103
104 static inline struct tvec_base *tbase_get_base(struct tvec_base *base)
105 {
106         return ((struct tvec_base *)((unsigned long)base & ~TBASE_DEFERRABLE_FLAG));
107 }
108
109 static inline void timer_set_deferrable(struct timer_list *timer)
110 {
111         timer->base = ((struct tvec_base *)((unsigned long)(timer->base) |
112                                        TBASE_DEFERRABLE_FLAG));
113 }
114
115 static inline void
116 timer_set_base(struct timer_list *timer, struct tvec_base *new_base)
117 {
118         timer->base = (struct tvec_base *)((unsigned long)(new_base) |
119                                       tbase_get_deferrable(timer->base));
120 }
121
122 static unsigned long round_jiffies_common(unsigned long j, int cpu,
123                 bool force_up)
124 {
125         int rem;
126         unsigned long original = j;
127
128         /*
129          * We don't want all cpus firing their timers at once hitting the
130          * same lock or cachelines, so we skew each extra cpu with an extra
131          * 3 jiffies. This 3 jiffies came originally from the mm/ code which
132          * already did this.
133          * The skew is done by adding 3*cpunr, then round, then subtract this
134          * extra offset again.
135          */
136         j += cpu * 3;
137
138         rem = j % HZ;
139
140         /*
141          * If the target jiffie is just after a whole second (which can happen
142          * due to delays of the timer irq, long irq off times etc etc) then
143          * we should round down to the whole second, not up. Use 1/4th second
144          * as cutoff for this rounding as an extreme upper bound for this.
145          * But never round down if @force_up is set.
146          */
147         if (rem < HZ/4 && !force_up) /* round down */
148                 j = j - rem;
149         else /* round up */
150                 j = j - rem + HZ;
151
152         /* now that we have rounded, subtract the extra skew again */
153         j -= cpu * 3;
154
155         if (j <= jiffies) /* rounding ate our timeout entirely; */
156                 return original;
157         return j;
158 }
159
160 /**
161  * __round_jiffies - function to round jiffies to a full second
162  * @j: the time in (absolute) jiffies that should be rounded
163  * @cpu: the processor number on which the timeout will happen
164  *
165  * __round_jiffies() rounds an absolute time in the future (in jiffies)
166  * up or down to (approximately) full seconds. This is useful for timers
167  * for which the exact time they fire does not matter too much, as long as
168  * they fire approximately every X seconds.
169  *
170  * By rounding these timers to whole seconds, all such timers will fire
171  * at the same time, rather than at various times spread out. The goal
172  * of this is to have the CPU wake up less, which saves power.
173  *
174  * The exact rounding is skewed for each processor to avoid all
175  * processors firing at the exact same time, which could lead
176  * to lock contention or spurious cache line bouncing.
177  *
178  * The return value is the rounded version of the @j parameter.
179  */
180 unsigned long __round_jiffies(unsigned long j, int cpu)
181 {
182         return round_jiffies_common(j, cpu, false);
183 }
184 EXPORT_SYMBOL_GPL(__round_jiffies);
185
186 /**
187  * __round_jiffies_relative - function to round jiffies to a full second
188  * @j: the time in (relative) jiffies that should be rounded
189  * @cpu: the processor number on which the timeout will happen
190  *
191  * __round_jiffies_relative() rounds a time delta  in the future (in jiffies)
192  * up or down to (approximately) full seconds. This is useful for timers
193  * for which the exact time they fire does not matter too much, as long as
194  * they fire approximately every X seconds.
195  *
196  * By rounding these timers to whole seconds, all such timers will fire
197  * at the same time, rather than at various times spread out. The goal
198  * of this is to have the CPU wake up less, which saves power.
199  *
200  * The exact rounding is skewed for each processor to avoid all
201  * processors firing at the exact same time, which could lead
202  * to lock contention or spurious cache line bouncing.
203  *
204  * The return value is the rounded version of the @j parameter.
205  */
206 unsigned long __round_jiffies_relative(unsigned long j, int cpu)
207 {
208         unsigned long j0 = jiffies;
209
210         /* Use j0 because jiffies might change while we run */
211         return round_jiffies_common(j + j0, cpu, false) - j0;
212 }
213 EXPORT_SYMBOL_GPL(__round_jiffies_relative);
214
215 /**
216  * round_jiffies - function to round jiffies to a full second
217  * @j: the time in (absolute) jiffies that should be rounded
218  *
219  * round_jiffies() rounds an absolute time in the future (in jiffies)
220  * up or down to (approximately) full seconds. This is useful for timers
221  * for which the exact time they fire does not matter too much, as long as
222  * they fire approximately every X seconds.
223  *
224  * By rounding these timers to whole seconds, all such timers will fire
225  * at the same time, rather than at various times spread out. The goal
226  * of this is to have the CPU wake up less, which saves power.
227  *
228  * The return value is the rounded version of the @j parameter.
229  */
230 unsigned long round_jiffies(unsigned long j)
231 {
232         return round_jiffies_common(j, raw_smp_processor_id(), false);
233 }
234 EXPORT_SYMBOL_GPL(round_jiffies);
235
236 /**
237  * round_jiffies_relative - function to round jiffies to a full second
238  * @j: the time in (relative) jiffies that should be rounded
239  *
240  * round_jiffies_relative() rounds a time delta  in the future (in jiffies)
241  * up or down to (approximately) full seconds. This is useful for timers
242  * for which the exact time they fire does not matter too much, as long as
243  * they fire approximately every X seconds.
244  *
245  * By rounding these timers to whole seconds, all such timers will fire
246  * at the same time, rather than at various times spread out. The goal
247  * of this is to have the CPU wake up less, which saves power.
248  *
249  * The return value is the rounded version of the @j parameter.
250  */
251 unsigned long round_jiffies_relative(unsigned long j)
252 {
253         return __round_jiffies_relative(j, raw_smp_processor_id());
254 }
255 EXPORT_SYMBOL_GPL(round_jiffies_relative);
256
257 /**
258  * __round_jiffies_up - function to round jiffies up to a full second
259  * @j: the time in (absolute) jiffies that should be rounded
260  * @cpu: the processor number on which the timeout will happen
261  *
262  * This is the same as __round_jiffies() except that it will never
263  * round down.  This is useful for timeouts for which the exact time
264  * of firing does not matter too much, as long as they don't fire too
265  * early.
266  */
267 unsigned long __round_jiffies_up(unsigned long j, int cpu)
268 {
269         return round_jiffies_common(j, cpu, true);
270 }
271 EXPORT_SYMBOL_GPL(__round_jiffies_up);
272
273 /**
274  * __round_jiffies_up_relative - function to round jiffies up to a full second
275  * @j: the time in (relative) jiffies that should be rounded
276  * @cpu: the processor number on which the timeout will happen
277  *
278  * This is the same as __round_jiffies_relative() except that it will never
279  * round down.  This is useful for timeouts for which the exact time
280  * of firing does not matter too much, as long as they don't fire too
281  * early.
282  */
283 unsigned long __round_jiffies_up_relative(unsigned long j, int cpu)
284 {
285         unsigned long j0 = jiffies;
286
287         /* Use j0 because jiffies might change while we run */
288         return round_jiffies_common(j + j0, cpu, true) - j0;
289 }
290 EXPORT_SYMBOL_GPL(__round_jiffies_up_relative);
291
292 /**
293  * round_jiffies_up - function to round jiffies up to a full second
294  * @j: the time in (absolute) jiffies that should be rounded
295  *
296  * This is the same as round_jiffies() except that it will never
297  * round down.  This is useful for timeouts for which the exact time
298  * of firing does not matter too much, as long as they don't fire too
299  * early.
300  */
301 unsigned long round_jiffies_up(unsigned long j)
302 {
303         return round_jiffies_common(j, raw_smp_processor_id(), true);
304 }
305 EXPORT_SYMBOL_GPL(round_jiffies_up);
306
307 /**
308  * round_jiffies_up_relative - function to round jiffies up to a full second
309  * @j: the time in (relative) jiffies that should be rounded
310  *
311  * This is the same as round_jiffies_relative() except that it will never
312  * round down.  This is useful for timeouts for which the exact time
313  * of firing does not matter too much, as long as they don't fire too
314  * early.
315  */
316 unsigned long round_jiffies_up_relative(unsigned long j)
317 {
318         return __round_jiffies_up_relative(j, raw_smp_processor_id());
319 }
320 EXPORT_SYMBOL_GPL(round_jiffies_up_relative);
321
322 /**
323  * set_timer_slack - set the allowed slack for a timer
324  * @slack_hz: the amount of time (in jiffies) allowed for rounding
325  *
326  * Set the amount of time, in jiffies, that a certain timer has
327  * in terms of slack. By setting this value, the timer subsystem
328  * will schedule the actual timer somewhere between
329  * the time mod_timer() asks for, and that time plus the slack.
330  *
331  * By setting the slack to -1, a percentage of the delay is used
332  * instead.
333  */
334 void set_timer_slack(struct timer_list *timer, int slack_hz)
335 {
336         timer->slack = slack_hz;
337 }
338 EXPORT_SYMBOL_GPL(set_timer_slack);
339
340
341 static inline void set_running_timer(struct tvec_base *base,
342                                         struct timer_list *timer)
343 {
344 #ifdef CONFIG_SMP
345         base->running_timer = timer;
346 #endif
347 }
348
349 static void internal_add_timer(struct tvec_base *base, struct timer_list *timer)
350 {
351         unsigned long expires = timer->expires;
352         unsigned long idx = expires - base->timer_jiffies;
353         struct list_head *vec;
354
355         if (idx < TVR_SIZE) {
356                 int i = expires & TVR_MASK;
357                 vec = base->tv1.vec + i;
358         } else if (idx < 1 << (TVR_BITS + TVN_BITS)) {
359                 int i = (expires >> TVR_BITS) & TVN_MASK;
360                 vec = base->tv2.vec + i;
361         } else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) {
362                 int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK;
363                 vec = base->tv3.vec + i;
364         } else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) {
365                 int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK;
366                 vec = base->tv4.vec + i;
367         } else if ((signed long) idx < 0) {
368                 /*
369                  * Can happen if you add a timer with expires == jiffies,
370                  * or you set a timer to go off in the past
371                  */
372                 vec = base->tv1.vec + (base->timer_jiffies & TVR_MASK);
373         } else {
374                 int i;
375                 /* If the timeout is larger than 0xffffffff on 64-bit
376                  * architectures then we use the maximum timeout:
377                  */
378                 if (idx > 0xffffffffUL) {
379                         idx = 0xffffffffUL;
380                         expires = idx + base->timer_jiffies;
381                 }
382                 i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK;
383                 vec = base->tv5.vec + i;
384         }
385         /*
386          * Timers are FIFO:
387          */
388         list_add_tail(&timer->entry, vec);
389 }
390
391 #ifdef CONFIG_TIMER_STATS
392 void __timer_stats_timer_set_start_info(struct timer_list *timer, void *addr)
393 {
394         if (timer->start_site)
395                 return;
396
397         timer->start_site = addr;
398         memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
399         timer->start_pid = current->pid;
400 }
401
402 static void timer_stats_account_timer(struct timer_list *timer)
403 {
404         unsigned int flag = 0;
405
406         if (likely(!timer->start_site))
407                 return;
408         if (unlikely(tbase_get_deferrable(timer->base)))
409                 flag |= TIMER_STATS_FLAG_DEFERRABLE;
410
411         timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
412                                  timer->function, timer->start_comm, flag);
413 }
414
415 #else
416 static void timer_stats_account_timer(struct timer_list *timer) {}
417 #endif
418
419 #ifdef CONFIG_DEBUG_OBJECTS_TIMERS
420
421 static struct debug_obj_descr timer_debug_descr;
422
423 /*
424  * fixup_init is called when:
425  * - an active object is initialized
426  */
427 static int timer_fixup_init(void *addr, enum debug_obj_state state)
428 {
429         struct timer_list *timer = addr;
430
431         switch (state) {
432         case ODEBUG_STATE_ACTIVE:
433                 del_timer_sync(timer);
434                 debug_object_init(timer, &timer_debug_descr);
435                 return 1;
436         default:
437                 return 0;
438         }
439 }
440
441 /*
442  * fixup_activate is called when:
443  * - an active object is activated
444  * - an unknown object is activated (might be a statically initialized object)
445  */
446 static int timer_fixup_activate(void *addr, enum debug_obj_state state)
447 {
448         struct timer_list *timer = addr;
449
450         switch (state) {
451
452         case ODEBUG_STATE_NOTAVAILABLE:
453                 /*
454                  * This is not really a fixup. The timer was
455                  * statically initialized. We just make sure that it
456                  * is tracked in the object tracker.
457                  */
458                 if (timer->entry.next == NULL &&
459                     timer->entry.prev == TIMER_ENTRY_STATIC) {
460                         debug_object_init(timer, &timer_debug_descr);
461                         debug_object_activate(timer, &timer_debug_descr);
462                         return 0;
463                 } else {
464                         WARN_ON_ONCE(1);
465                 }
466                 return 0;
467
468         case ODEBUG_STATE_ACTIVE:
469                 WARN_ON(1);
470
471         default:
472                 return 0;
473         }
474 }
475
476 /*
477  * fixup_free is called when:
478  * - an active object is freed
479  */
480 static int timer_fixup_free(void *addr, enum debug_obj_state state)
481 {
482         struct timer_list *timer = addr;
483
484         switch (state) {
485         case ODEBUG_STATE_ACTIVE:
486                 del_timer_sync(timer);
487                 debug_object_free(timer, &timer_debug_descr);
488                 return 1;
489         default:
490                 return 0;
491         }
492 }
493
494 static struct debug_obj_descr timer_debug_descr = {
495         .name           = "timer_list",
496         .fixup_init     = timer_fixup_init,
497         .fixup_activate = timer_fixup_activate,
498         .fixup_free     = timer_fixup_free,
499 };
500
501 static inline void debug_timer_init(struct timer_list *timer)
502 {
503         debug_object_init(timer, &timer_debug_descr);
504 }
505
506 static inline void debug_timer_activate(struct timer_list *timer)
507 {
508         debug_object_activate(timer, &timer_debug_descr);
509 }
510
511 static inline void debug_timer_deactivate(struct timer_list *timer)
512 {
513         debug_object_deactivate(timer, &timer_debug_descr);
514 }
515
516 static inline void debug_timer_free(struct timer_list *timer)
517 {
518         debug_object_free(timer, &timer_debug_descr);
519 }
520
521 static void __init_timer(struct timer_list *timer,
522                          const char *name,
523                          struct lock_class_key *key);
524
525 void init_timer_on_stack_key(struct timer_list *timer,
526                              const char *name,
527                              struct lock_class_key *key)
528 {
529         debug_object_init_on_stack(timer, &timer_debug_descr);
530         __init_timer(timer, name, key);
531 }
532 EXPORT_SYMBOL_GPL(init_timer_on_stack_key);
533
534 void destroy_timer_on_stack(struct timer_list *timer)
535 {
536         debug_object_free(timer, &timer_debug_descr);
537 }
538 EXPORT_SYMBOL_GPL(destroy_timer_on_stack);
539
540 #else
541 static inline void debug_timer_init(struct timer_list *timer) { }
542 static inline void debug_timer_activate(struct timer_list *timer) { }
543 static inline void debug_timer_deactivate(struct timer_list *timer) { }
544 #endif
545
546 static inline void debug_init(struct timer_list *timer)
547 {
548         debug_timer_init(timer);
549         trace_timer_init(timer);
550 }
551
552 static inline void
553 debug_activate(struct timer_list *timer, unsigned long expires)
554 {
555         debug_timer_activate(timer);
556         trace_timer_start(timer, expires);
557 }
558
559 static inline void debug_deactivate(struct timer_list *timer)
560 {
561         debug_timer_deactivate(timer);
562         trace_timer_cancel(timer);
563 }
564
565 static void __init_timer(struct timer_list *timer,
566                          const char *name,
567                          struct lock_class_key *key)
568 {
569         timer->entry.next = NULL;
570         timer->base = __raw_get_cpu_var(tvec_bases);
571         timer->slack = -1;
572 #ifdef CONFIG_TIMER_STATS
573         timer->start_site = NULL;
574         timer->start_pid = -1;
575         memset(timer->start_comm, 0, TASK_COMM_LEN);
576 #endif
577         lockdep_init_map(&timer->lockdep_map, name, key, 0);
578 }
579
580 void setup_deferrable_timer_on_stack_key(struct timer_list *timer,
581                                          const char *name,
582                                          struct lock_class_key *key,
583                                          void (*function)(unsigned long),
584                                          unsigned long data)
585 {
586         timer->function = function;
587         timer->data = data;
588         init_timer_on_stack_key(timer, name, key);
589         timer_set_deferrable(timer);
590 }
591 EXPORT_SYMBOL_GPL(setup_deferrable_timer_on_stack_key);
592
593 /**
594  * init_timer_key - initialize a timer
595  * @timer: the timer to be initialized
596  * @name: name of the timer
597  * @key: lockdep class key of the fake lock used for tracking timer
598  *       sync lock dependencies
599  *
600  * init_timer_key() must be done to a timer prior calling *any* of the
601  * other timer functions.
602  */
603 void init_timer_key(struct timer_list *timer,
604                     const char *name,
605                     struct lock_class_key *key)
606 {
607         debug_init(timer);
608         __init_timer(timer, name, key);
609 }
610 EXPORT_SYMBOL(init_timer_key);
611
612 void init_timer_deferrable_key(struct timer_list *timer,
613                                const char *name,
614                                struct lock_class_key *key)
615 {
616         init_timer_key(timer, name, key);
617         timer_set_deferrable(timer);
618 }
619 EXPORT_SYMBOL(init_timer_deferrable_key);
620
621 static inline void detach_timer(struct timer_list *timer,
622                                 int clear_pending)
623 {
624         struct list_head *entry = &timer->entry;
625
626         debug_deactivate(timer);
627
628         __list_del(entry->prev, entry->next);
629         if (clear_pending)
630                 entry->next = NULL;
631         entry->prev = LIST_POISON2;
632 }
633
634 /*
635  * We are using hashed locking: holding per_cpu(tvec_bases).lock
636  * means that all timers which are tied to this base via timer->base are
637  * locked, and the base itself is locked too.
638  *
639  * So __run_timers/migrate_timers can safely modify all timers which could
640  * be found on ->tvX lists.
641  *
642  * When the timer's base is locked, and the timer removed from list, it is
643  * possible to set timer->base = NULL and drop the lock: the timer remains
644  * locked.
645  */
646 static struct tvec_base *lock_timer_base(struct timer_list *timer,
647                                         unsigned long *flags)
648         __acquires(timer->base->lock)
649 {
650         struct tvec_base *base;
651
652         for (;;) {
653                 struct tvec_base *prelock_base = timer->base;
654                 base = tbase_get_base(prelock_base);
655                 if (likely(base != NULL)) {
656                         spin_lock_irqsave(&base->lock, *flags);
657                         if (likely(prelock_base == timer->base))
658                                 return base;
659                         /* The timer has migrated to another CPU */
660                         spin_unlock_irqrestore(&base->lock, *flags);
661                 }
662                 cpu_relax();
663         }
664 }
665
666 static inline int
667 __mod_timer(struct timer_list *timer, unsigned long expires,
668                                                 bool pending_only, int pinned)
669 {
670         struct tvec_base *base, *new_base;
671         unsigned long flags;
672         int ret = 0 , cpu;
673
674         timer_stats_timer_set_start_info(timer);
675         BUG_ON(!timer->function);
676
677         base = lock_timer_base(timer, &flags);
678
679         if (timer_pending(timer)) {
680                 detach_timer(timer, 0);
681                 if (timer->expires == base->next_timer &&
682                     !tbase_get_deferrable(timer->base))
683                         base->next_timer = base->timer_jiffies;
684                 ret = 1;
685         } else {
686                 if (pending_only)
687                         goto out_unlock;
688         }
689
690         debug_activate(timer, expires);
691
692         cpu = smp_processor_id();
693
694 #if defined(CONFIG_NO_HZ) && defined(CONFIG_SMP)
695         if (!pinned && get_sysctl_timer_migration() && idle_cpu(cpu))
696                 cpu = get_nohz_timer_target();
697 #endif
698         new_base = per_cpu(tvec_bases, cpu);
699
700         if (base != new_base) {
701                 /*
702                  * We are trying to schedule the timer on the local CPU.
703                  * However we can't change timer's base while it is running,
704                  * otherwise del_timer_sync() can't detect that the timer's
705                  * handler yet has not finished. This also guarantees that
706                  * the timer is serialized wrt itself.
707                  */
708                 if (likely(base->running_timer != timer)) {
709                         /* See the comment in lock_timer_base() */
710                         timer_set_base(timer, NULL);
711                         spin_unlock(&base->lock);
712                         base = new_base;
713                         spin_lock(&base->lock);
714                         timer_set_base(timer, base);
715                 }
716         }
717
718         timer->expires = expires;
719         if (time_before(timer->expires, base->next_timer) &&
720             !tbase_get_deferrable(timer->base))
721                 base->next_timer = timer->expires;
722         internal_add_timer(base, timer);
723
724 out_unlock:
725         spin_unlock_irqrestore(&base->lock, flags);
726
727         return ret;
728 }
729
730 /**
731  * mod_timer_pending - modify a pending timer's timeout
732  * @timer: the pending timer to be modified
733  * @expires: new timeout in jiffies
734  *
735  * mod_timer_pending() is the same for pending timers as mod_timer(),
736  * but will not re-activate and modify already deleted timers.
737  *
738  * It is useful for unserialized use of timers.
739  */
740 int mod_timer_pending(struct timer_list *timer, unsigned long expires)
741 {
742         return __mod_timer(timer, expires, true, TIMER_NOT_PINNED);
743 }
744 EXPORT_SYMBOL(mod_timer_pending);
745
746 /*
747  * Decide where to put the timer while taking the slack into account
748  *
749  * Algorithm:
750  *   1) calculate the maximum (absolute) time
751  *   2) calculate the highest bit where the expires and new max are different
752  *   3) use this bit to make a mask
753  *   4) use the bitmask to round down the maximum time, so that all last
754  *      bits are zeros
755  */
756 static inline
757 unsigned long apply_slack(struct timer_list *timer, unsigned long expires)
758 {
759         unsigned long expires_limit, mask;
760         int bit;
761
762         expires_limit = expires;
763
764         if (timer->slack >= 0) {
765                 expires_limit = expires + timer->slack;
766         } else {
767                 unsigned long now = jiffies;
768
769                 /* No slack, if already expired else auto slack 0.4% */
770                 if (time_after(expires, now))
771                         expires_limit = expires + (expires - now)/256;
772         }
773         mask = expires ^ expires_limit;
774         if (mask == 0)
775                 return expires;
776
777         bit = find_last_bit(&mask, BITS_PER_LONG);
778
779         mask = (1 << bit) - 1;
780
781         expires_limit = expires_limit & ~(mask);
782
783         return expires_limit;
784 }
785
786 /**
787  * mod_timer - modify a timer's timeout
788  * @timer: the timer to be modified
789  * @expires: new timeout in jiffies
790  *
791  * mod_timer() is a more efficient way to update the expire field of an
792  * active timer (if the timer is inactive it will be activated)
793  *
794  * mod_timer(timer, expires) is equivalent to:
795  *
796  *     del_timer(timer); timer->expires = expires; add_timer(timer);
797  *
798  * Note that if there are multiple unserialized concurrent users of the
799  * same timer, then mod_timer() is the only safe way to modify the timeout,
800  * since add_timer() cannot modify an already running timer.
801  *
802  * The function returns whether it has modified a pending timer or not.
803  * (ie. mod_timer() of an inactive timer returns 0, mod_timer() of an
804  * active timer returns 1.)
805  */
806 int mod_timer(struct timer_list *timer, unsigned long expires)
807 {
808         /*
809          * This is a common optimization triggered by the
810          * networking code - if the timer is re-modified
811          * to be the same thing then just return:
812          */
813         if (timer_pending(timer) && timer->expires == expires)
814                 return 1;
815
816         expires = apply_slack(timer, expires);
817
818         return __mod_timer(timer, expires, false, TIMER_NOT_PINNED);
819 }
820 EXPORT_SYMBOL(mod_timer);
821
822 /**
823  * mod_timer_pinned - modify a timer's timeout
824  * @timer: the timer to be modified
825  * @expires: new timeout in jiffies
826  *
827  * mod_timer_pinned() is a way to update the expire field of an
828  * active timer (if the timer is inactive it will be activated)
829  * and not allow the timer to be migrated to a different CPU.
830  *
831  * mod_timer_pinned(timer, expires) is equivalent to:
832  *
833  *     del_timer(timer); timer->expires = expires; add_timer(timer);
834  */
835 int mod_timer_pinned(struct timer_list *timer, unsigned long expires)
836 {
837         if (timer->expires == expires && timer_pending(timer))
838                 return 1;
839
840         return __mod_timer(timer, expires, false, TIMER_PINNED);
841 }
842 EXPORT_SYMBOL(mod_timer_pinned);
843
844 /**
845  * add_timer - start a timer
846  * @timer: the timer to be added
847  *
848  * The kernel will do a ->function(->data) callback from the
849  * timer interrupt at the ->expires point in the future. The
850  * current time is 'jiffies'.
851  *
852  * The timer's ->expires, ->function (and if the handler uses it, ->data)
853  * fields must be set prior calling this function.
854  *
855  * Timers with an ->expires field in the past will be executed in the next
856  * timer tick.
857  */
858 void add_timer(struct timer_list *timer)
859 {
860         BUG_ON(timer_pending(timer));
861         mod_timer(timer, timer->expires);
862 }
863 EXPORT_SYMBOL(add_timer);
864
865 /**
866  * add_timer_on - start a timer on a particular CPU
867  * @timer: the timer to be added
868  * @cpu: the CPU to start it on
869  *
870  * This is not very scalable on SMP. Double adds are not possible.
871  */
872 void add_timer_on(struct timer_list *timer, int cpu)
873 {
874         struct tvec_base *base = per_cpu(tvec_bases, cpu);
875         unsigned long flags;
876
877         timer_stats_timer_set_start_info(timer);
878         BUG_ON(timer_pending(timer) || !timer->function);
879         spin_lock_irqsave(&base->lock, flags);
880         timer_set_base(timer, base);
881         debug_activate(timer, timer->expires);
882         if (time_before(timer->expires, base->next_timer) &&
883             !tbase_get_deferrable(timer->base))
884                 base->next_timer = timer->expires;
885         internal_add_timer(base, timer);
886         /*
887          * Check whether the other CPU is idle and needs to be
888          * triggered to reevaluate the timer wheel when nohz is
889          * active. We are protected against the other CPU fiddling
890          * with the timer by holding the timer base lock. This also
891          * makes sure that a CPU on the way to idle can not evaluate
892          * the timer wheel.
893          */
894         wake_up_idle_cpu(cpu);
895         spin_unlock_irqrestore(&base->lock, flags);
896 }
897 EXPORT_SYMBOL_GPL(add_timer_on);
898
899 /**
900  * del_timer - deactive a timer.
901  * @timer: the timer to be deactivated
902  *
903  * del_timer() deactivates a timer - this works on both active and inactive
904  * timers.
905  *
906  * The function returns whether it has deactivated a pending timer or not.
907  * (ie. del_timer() of an inactive timer returns 0, del_timer() of an
908  * active timer returns 1.)
909  */
910 int del_timer(struct timer_list *timer)
911 {
912         struct tvec_base *base;
913         unsigned long flags;
914         int ret = 0;
915
916         timer_stats_timer_clear_start_info(timer);
917         if (timer_pending(timer)) {
918                 base = lock_timer_base(timer, &flags);
919                 if (timer_pending(timer)) {
920                         detach_timer(timer, 1);
921                         if (timer->expires == base->next_timer &&
922                             !tbase_get_deferrable(timer->base))
923                                 base->next_timer = base->timer_jiffies;
924                         ret = 1;
925                 }
926                 spin_unlock_irqrestore(&base->lock, flags);
927         }
928
929         return ret;
930 }
931 EXPORT_SYMBOL(del_timer);
932
933 #ifdef CONFIG_SMP
934 /**
935  * try_to_del_timer_sync - Try to deactivate a timer
936  * @timer: timer do del
937  *
938  * This function tries to deactivate a timer. Upon successful (ret >= 0)
939  * exit the timer is not queued and the handler is not running on any CPU.
940  *
941  * It must not be called from interrupt contexts.
942  */
943 int try_to_del_timer_sync(struct timer_list *timer)
944 {
945         struct tvec_base *base;
946         unsigned long flags;
947         int ret = -1;
948
949         base = lock_timer_base(timer, &flags);
950
951         if (base->running_timer == timer)
952                 goto out;
953
954         timer_stats_timer_clear_start_info(timer);
955         ret = 0;
956         if (timer_pending(timer)) {
957                 detach_timer(timer, 1);
958                 if (timer->expires == base->next_timer &&
959                     !tbase_get_deferrable(timer->base))
960                         base->next_timer = base->timer_jiffies;
961                 ret = 1;
962         }
963 out:
964         spin_unlock_irqrestore(&base->lock, flags);
965
966         return ret;
967 }
968 EXPORT_SYMBOL(try_to_del_timer_sync);
969
970 /**
971  * del_timer_sync - deactivate a timer and wait for the handler to finish.
972  * @timer: the timer to be deactivated
973  *
974  * This function only differs from del_timer() on SMP: besides deactivating
975  * the timer it also makes sure the handler has finished executing on other
976  * CPUs.
977  *
978  * Synchronization rules: Callers must prevent restarting of the timer,
979  * otherwise this function is meaningless. It must not be called from
980  * interrupt contexts. The caller must not hold locks which would prevent
981  * completion of the timer's handler. The timer's handler must not call
982  * add_timer_on(). Upon exit the timer is not queued and the handler is
983  * not running on any CPU.
984  *
985  * The function returns whether it has deactivated a pending timer or not.
986  */
987 int del_timer_sync(struct timer_list *timer)
988 {
989 #ifdef CONFIG_LOCKDEP
990         unsigned long flags;
991
992         local_irq_save(flags);
993         lock_map_acquire(&timer->lockdep_map);
994         lock_map_release(&timer->lockdep_map);
995         local_irq_restore(flags);
996 #endif
997
998         for (;;) {
999                 int ret = try_to_del_timer_sync(timer);
1000                 if (ret >= 0)
1001                         return ret;
1002                 cpu_relax();
1003         }
1004 }
1005 EXPORT_SYMBOL(del_timer_sync);
1006 #endif
1007
1008 static int cascade(struct tvec_base *base, struct tvec *tv, int index)
1009 {
1010         /* cascade all the timers from tv up one level */
1011         struct timer_list *timer, *tmp;
1012         struct list_head tv_list;
1013
1014         list_replace_init(tv->vec + index, &tv_list);
1015
1016         /*
1017          * We are removing _all_ timers from the list, so we
1018          * don't have to detach them individually.
1019          */
1020         list_for_each_entry_safe(timer, tmp, &tv_list, entry) {
1021                 BUG_ON(tbase_get_base(timer->base) != base);
1022                 internal_add_timer(base, timer);
1023         }
1024
1025         return index;
1026 }
1027
1028 static void call_timer_fn(struct timer_list *timer, void (*fn)(unsigned long),
1029                           unsigned long data)
1030 {
1031         int preempt_count = preempt_count();
1032
1033 #ifdef CONFIG_LOCKDEP
1034         /*
1035          * It is permissible to free the timer from inside the
1036          * function that is called from it, this we need to take into
1037          * account for lockdep too. To avoid bogus "held lock freed"
1038          * warnings as well as problems when looking into
1039          * timer->lockdep_map, make a copy and use that here.
1040          */
1041         struct lockdep_map lockdep_map = timer->lockdep_map;
1042 #endif
1043         /*
1044          * Couple the lock chain with the lock chain at
1045          * del_timer_sync() by acquiring the lock_map around the fn()
1046          * call here and in del_timer_sync().
1047          */
1048         lock_map_acquire(&lockdep_map);
1049
1050         trace_timer_expire_entry(timer);
1051         fn(data);
1052         trace_timer_expire_exit(timer);
1053
1054         lock_map_release(&lockdep_map);
1055
1056         if (preempt_count != preempt_count()) {
1057                 WARN_ONCE(1, "timer: %pF preempt leak: %08x -> %08x\n",
1058                           fn, preempt_count, preempt_count());
1059                 /*
1060                  * Restore the preempt count. That gives us a decent
1061                  * chance to survive and extract information. If the
1062                  * callback kept a lock held, bad luck, but not worse
1063                  * than the BUG() we had.
1064                  */
1065                 preempt_count() = preempt_count;
1066         }
1067 }
1068
1069 #define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK)
1070
1071 /**
1072  * __run_timers - run all expired timers (if any) on this CPU.
1073  * @base: the timer vector to be processed.
1074  *
1075  * This function cascades all vectors and executes all expired timer
1076  * vectors.
1077  */
1078 static inline void __run_timers(struct tvec_base *base)
1079 {
1080         struct timer_list *timer;
1081
1082         spin_lock_irq(&base->lock);
1083         while (time_after_eq(jiffies, base->timer_jiffies)) {
1084                 struct list_head work_list;
1085                 struct list_head *head = &work_list;
1086                 int index = base->timer_jiffies & TVR_MASK;
1087
1088                 /*
1089                  * Cascade timers:
1090                  */
1091                 if (!index &&
1092                         (!cascade(base, &base->tv2, INDEX(0))) &&
1093                                 (!cascade(base, &base->tv3, INDEX(1))) &&
1094                                         !cascade(base, &base->tv4, INDEX(2)))
1095                         cascade(base, &base->tv5, INDEX(3));
1096                 ++base->timer_jiffies;
1097                 list_replace_init(base->tv1.vec + index, &work_list);
1098                 while (!list_empty(head)) {
1099                         void (*fn)(unsigned long);
1100                         unsigned long data;
1101
1102                         timer = list_first_entry(head, struct timer_list,entry);
1103                         fn = timer->function;
1104                         data = timer->data;
1105
1106                         timer_stats_account_timer(timer);
1107
1108                         set_running_timer(base, timer);
1109                         detach_timer(timer, 1);
1110
1111                         spin_unlock_irq(&base->lock);
1112                         call_timer_fn(timer, fn, data);
1113                         spin_lock_irq(&base->lock);
1114                 }
1115         }
1116         set_running_timer(base, NULL);
1117         spin_unlock_irq(&base->lock);
1118 }
1119
1120 #ifdef CONFIG_NO_HZ
1121 /*
1122  * Find out when the next timer event is due to happen. This
1123  * is used on S/390 to stop all activity when a CPU is idle.
1124  * This function needs to be called with interrupts disabled.
1125  */
1126 static unsigned long __next_timer_interrupt(struct tvec_base *base)
1127 {
1128         unsigned long timer_jiffies = base->timer_jiffies;
1129         unsigned long expires = timer_jiffies + NEXT_TIMER_MAX_DELTA;
1130         int index, slot, array, found = 0;
1131         struct timer_list *nte;
1132         struct tvec *varray[4];
1133
1134         /* Look for timer events in tv1. */
1135         index = slot = timer_jiffies & TVR_MASK;
1136         do {
1137                 list_for_each_entry(nte, base->tv1.vec + slot, entry) {
1138                         if (tbase_get_deferrable(nte->base))
1139                                 continue;
1140
1141                         found = 1;
1142                         expires = nte->expires;
1143                         /* Look at the cascade bucket(s)? */
1144                         if (!index || slot < index)
1145                                 goto cascade;
1146                         return expires;
1147                 }
1148                 slot = (slot + 1) & TVR_MASK;
1149         } while (slot != index);
1150
1151 cascade:
1152         /* Calculate the next cascade event */
1153         if (index)
1154                 timer_jiffies += TVR_SIZE - index;
1155         timer_jiffies >>= TVR_BITS;
1156
1157         /* Check tv2-tv5. */
1158         varray[0] = &base->tv2;
1159         varray[1] = &base->tv3;
1160         varray[2] = &base->tv4;
1161         varray[3] = &base->tv5;
1162
1163         for (array = 0; array < 4; array++) {
1164                 struct tvec *varp = varray[array];
1165
1166                 index = slot = timer_jiffies & TVN_MASK;
1167                 do {
1168                         list_for_each_entry(nte, varp->vec + slot, entry) {
1169                                 if (tbase_get_deferrable(nte->base))
1170                                         continue;
1171
1172                                 found = 1;
1173                                 if (time_before(nte->expires, expires))
1174                                         expires = nte->expires;
1175                         }
1176                         /*
1177                          * Do we still search for the first timer or are
1178                          * we looking up the cascade buckets ?
1179                          */
1180                         if (found) {
1181                                 /* Look at the cascade bucket(s)? */
1182                                 if (!index || slot < index)
1183                                         break;
1184                                 return expires;
1185                         }
1186                         slot = (slot + 1) & TVN_MASK;
1187                 } while (slot != index);
1188
1189                 if (index)
1190                         timer_jiffies += TVN_SIZE - index;
1191                 timer_jiffies >>= TVN_BITS;
1192         }
1193         return expires;
1194 }
1195
1196 /*
1197  * Check, if the next hrtimer event is before the next timer wheel
1198  * event:
1199  */
1200 static unsigned long cmp_next_hrtimer_event(unsigned long now,
1201                                             unsigned long expires)
1202 {
1203         ktime_t hr_delta = hrtimer_get_next_event();
1204         struct timespec tsdelta;
1205         unsigned long delta;
1206
1207         if (hr_delta.tv64 == KTIME_MAX)
1208                 return expires;
1209
1210         /*
1211          * Expired timer available, let it expire in the next tick
1212          */
1213         if (hr_delta.tv64 <= 0)
1214                 return now + 1;
1215
1216         tsdelta = ktime_to_timespec(hr_delta);
1217         delta = timespec_to_jiffies(&tsdelta);
1218
1219         /*
1220          * Limit the delta to the max value, which is checked in
1221          * tick_nohz_stop_sched_tick():
1222          */
1223         if (delta > NEXT_TIMER_MAX_DELTA)
1224                 delta = NEXT_TIMER_MAX_DELTA;
1225
1226         /*
1227          * Take rounding errors in to account and make sure, that it
1228          * expires in the next tick. Otherwise we go into an endless
1229          * ping pong due to tick_nohz_stop_sched_tick() retriggering
1230          * the timer softirq
1231          */
1232         if (delta < 1)
1233                 delta = 1;
1234         now += delta;
1235         if (time_before(now, expires))
1236                 return now;
1237         return expires;
1238 }
1239
1240 /**
1241  * get_next_timer_interrupt - return the jiffy of the next pending timer
1242  * @now: current time (in jiffies)
1243  */
1244 unsigned long get_next_timer_interrupt(unsigned long now)
1245 {
1246         struct tvec_base *base = __get_cpu_var(tvec_bases);
1247         unsigned long expires;
1248
1249         spin_lock(&base->lock);
1250         if (time_before_eq(base->next_timer, base->timer_jiffies))
1251                 base->next_timer = __next_timer_interrupt(base);
1252         expires = base->next_timer;
1253         spin_unlock(&base->lock);
1254
1255         if (time_before_eq(expires, now))
1256                 return now;
1257
1258         return cmp_next_hrtimer_event(now, expires);
1259 }
1260 #endif
1261
1262 /*
1263  * Called from the timer interrupt handler to charge one tick to the current
1264  * process.  user_tick is 1 if the tick is user time, 0 for system.
1265  */
1266 void update_process_times(int user_tick)
1267 {
1268         struct task_struct *p = current;
1269         int cpu = smp_processor_id();
1270
1271         /* Note: this timer irq context must be accounted for as well. */
1272         account_process_tick(p, user_tick);
1273         run_local_timers();
1274         rcu_check_callbacks(cpu, user_tick);
1275         printk_tick();
1276         perf_event_do_pending();
1277         scheduler_tick();
1278         run_posix_cpu_timers(p);
1279 }
1280
1281 /*
1282  * This function runs timers and the timer-tq in bottom half context.
1283  */
1284 static void run_timer_softirq(struct softirq_action *h)
1285 {
1286         struct tvec_base *base = __get_cpu_var(tvec_bases);
1287
1288         hrtimer_run_pending();
1289
1290         if (time_after_eq(jiffies, base->timer_jiffies))
1291                 __run_timers(base);
1292 }
1293
1294 /*
1295  * Called by the local, per-CPU timer interrupt on SMP.
1296  */
1297 void run_local_timers(void)
1298 {
1299         hrtimer_run_queues();
1300         raise_softirq(TIMER_SOFTIRQ);
1301 }
1302
1303 /*
1304  * The 64-bit jiffies value is not atomic - you MUST NOT read it
1305  * without sampling the sequence number in xtime_lock.
1306  * jiffies is defined in the linker script...
1307  */
1308
1309 void do_timer(unsigned long ticks)
1310 {
1311         jiffies_64 += ticks;
1312         update_wall_time();
1313         calc_global_load();
1314 }
1315
1316 #ifdef __ARCH_WANT_SYS_ALARM
1317
1318 /*
1319  * For backwards compatibility?  This can be done in libc so Alpha
1320  * and all newer ports shouldn't need it.
1321  */
1322 SYSCALL_DEFINE1(alarm, unsigned int, seconds)
1323 {
1324         return alarm_setitimer(seconds);
1325 }
1326
1327 #endif
1328
1329 #ifndef __alpha__
1330
1331 /*
1332  * The Alpha uses getxpid, getxuid, and getxgid instead.  Maybe this
1333  * should be moved into arch/i386 instead?
1334  */
1335
1336 /**
1337  * sys_getpid - return the thread group id of the current process
1338  *
1339  * Note, despite the name, this returns the tgid not the pid.  The tgid and
1340  * the pid are identical unless CLONE_THREAD was specified on clone() in
1341  * which case the tgid is the same in all threads of the same group.
1342  *
1343  * This is SMP safe as current->tgid does not change.
1344  */
1345 SYSCALL_DEFINE0(getpid)
1346 {
1347         return task_tgid_vnr(current);
1348 }
1349
1350 /*
1351  * Accessing ->real_parent is not SMP-safe, it could
1352  * change from under us. However, we can use a stale
1353  * value of ->real_parent under rcu_read_lock(), see
1354  * release_task()->call_rcu(delayed_put_task_struct).
1355  */
1356 SYSCALL_DEFINE0(getppid)
1357 {
1358         int pid;
1359
1360         rcu_read_lock();
1361         pid = task_tgid_vnr(current->real_parent);
1362         rcu_read_unlock();
1363
1364         return pid;
1365 }
1366
1367 SYSCALL_DEFINE0(getuid)
1368 {
1369         /* Only we change this so SMP safe */
1370         return current_uid();
1371 }
1372
1373 SYSCALL_DEFINE0(geteuid)
1374 {
1375         /* Only we change this so SMP safe */
1376         return current_euid();
1377 }
1378
1379 SYSCALL_DEFINE0(getgid)
1380 {
1381         /* Only we change this so SMP safe */
1382         return current_gid();
1383 }
1384
1385 SYSCALL_DEFINE0(getegid)
1386 {
1387         /* Only we change this so SMP safe */
1388         return  current_egid();
1389 }
1390
1391 #endif
1392
1393 static void process_timeout(unsigned long __data)
1394 {
1395         wake_up_process((struct task_struct *)__data);
1396 }
1397
1398 /**
1399  * schedule_timeout - sleep until timeout
1400  * @timeout: timeout value in jiffies
1401  *
1402  * Make the current task sleep until @timeout jiffies have
1403  * elapsed. The routine will return immediately unless
1404  * the current task state has been set (see set_current_state()).
1405  *
1406  * You can set the task state as follows -
1407  *
1408  * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to
1409  * pass before the routine returns. The routine will return 0
1410  *
1411  * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1412  * delivered to the current task. In this case the remaining time
1413  * in jiffies will be returned, or 0 if the timer expired in time
1414  *
1415  * The current task state is guaranteed to be TASK_RUNNING when this
1416  * routine returns.
1417  *
1418  * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule
1419  * the CPU away without a bound on the timeout. In this case the return
1420  * value will be %MAX_SCHEDULE_TIMEOUT.
1421  *
1422  * In all cases the return value is guaranteed to be non-negative.
1423  */
1424 signed long __sched schedule_timeout(signed long timeout)
1425 {
1426         struct timer_list timer;
1427         unsigned long expire;
1428
1429         switch (timeout)
1430         {
1431         case MAX_SCHEDULE_TIMEOUT:
1432                 /*
1433                  * These two special cases are useful to be comfortable
1434                  * in the caller. Nothing more. We could take
1435                  * MAX_SCHEDULE_TIMEOUT from one of the negative value
1436                  * but I' d like to return a valid offset (>=0) to allow
1437                  * the caller to do everything it want with the retval.
1438                  */
1439                 schedule();
1440                 goto out;
1441         default:
1442                 /*
1443                  * Another bit of PARANOID. Note that the retval will be
1444                  * 0 since no piece of kernel is supposed to do a check
1445                  * for a negative retval of schedule_timeout() (since it
1446                  * should never happens anyway). You just have the printk()
1447                  * that will tell you if something is gone wrong and where.
1448                  */
1449                 if (timeout < 0) {
1450                         printk(KERN_ERR "schedule_timeout: wrong timeout "
1451                                 "value %lx\n", timeout);
1452                         dump_stack();
1453                         current->state = TASK_RUNNING;
1454                         goto out;
1455                 }
1456         }
1457
1458         expire = timeout + jiffies;
1459
1460         setup_timer_on_stack(&timer, process_timeout, (unsigned long)current);
1461         __mod_timer(&timer, expire, false, TIMER_NOT_PINNED);
1462         schedule();
1463         del_singleshot_timer_sync(&timer);
1464
1465         /* Remove the timer from the object tracker */
1466         destroy_timer_on_stack(&timer);
1467
1468         timeout = expire - jiffies;
1469
1470  out:
1471         return timeout < 0 ? 0 : timeout;
1472 }
1473 EXPORT_SYMBOL(schedule_timeout);
1474
1475 /*
1476  * We can use __set_current_state() here because schedule_timeout() calls
1477  * schedule() unconditionally.
1478  */
1479 signed long __sched schedule_timeout_interruptible(signed long timeout)
1480 {
1481         __set_current_state(TASK_INTERRUPTIBLE);
1482         return schedule_timeout(timeout);
1483 }
1484 EXPORT_SYMBOL(schedule_timeout_interruptible);
1485
1486 signed long __sched schedule_timeout_killable(signed long timeout)
1487 {
1488         __set_current_state(TASK_KILLABLE);
1489         return schedule_timeout(timeout);
1490 }
1491 EXPORT_SYMBOL(schedule_timeout_killable);
1492
1493 signed long __sched schedule_timeout_uninterruptible(signed long timeout)
1494 {
1495         __set_current_state(TASK_UNINTERRUPTIBLE);
1496         return schedule_timeout(timeout);
1497 }
1498 EXPORT_SYMBOL(schedule_timeout_uninterruptible);
1499
1500 /* Thread ID - the internal kernel "pid" */
1501 SYSCALL_DEFINE0(gettid)
1502 {
1503         return task_pid_vnr(current);
1504 }
1505
1506 /**
1507  * do_sysinfo - fill in sysinfo struct
1508  * @info: pointer to buffer to fill
1509  */
1510 int do_sysinfo(struct sysinfo *info)
1511 {
1512         unsigned long mem_total, sav_total;
1513         unsigned int mem_unit, bitcount;
1514         struct timespec tp;
1515
1516         memset(info, 0, sizeof(struct sysinfo));
1517
1518         ktime_get_ts(&tp);
1519         monotonic_to_bootbased(&tp);
1520         info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
1521
1522         get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT);
1523
1524         info->procs = nr_threads;
1525
1526         si_meminfo(info);
1527         si_swapinfo(info);
1528
1529         /*
1530          * If the sum of all the available memory (i.e. ram + swap)
1531          * is less than can be stored in a 32 bit unsigned long then
1532          * we can be binary compatible with 2.2.x kernels.  If not,
1533          * well, in that case 2.2.x was broken anyways...
1534          *
1535          *  -Erik Andersen <andersee@debian.org>
1536          */
1537
1538         mem_total = info->totalram + info->totalswap;
1539         if (mem_total < info->totalram || mem_total < info->totalswap)
1540                 goto out;
1541         bitcount = 0;
1542         mem_unit = info->mem_unit;
1543         while (mem_unit > 1) {
1544                 bitcount++;
1545                 mem_unit >>= 1;
1546                 sav_total = mem_total;
1547                 mem_total <<= 1;
1548                 if (mem_total < sav_total)
1549                         goto out;
1550         }
1551
1552         /*
1553          * If mem_total did not overflow, multiply all memory values by
1554          * info->mem_unit and set it to 1.  This leaves things compatible
1555          * with 2.2.x, and also retains compatibility with earlier 2.4.x
1556          * kernels...
1557          */
1558
1559         info->mem_unit = 1;
1560         info->totalram <<= bitcount;
1561         info->freeram <<= bitcount;
1562         info->sharedram <<= bitcount;
1563         info->bufferram <<= bitcount;
1564         info->totalswap <<= bitcount;
1565         info->freeswap <<= bitcount;
1566         info->totalhigh <<= bitcount;
1567         info->freehigh <<= bitcount;
1568
1569 out:
1570         return 0;
1571 }
1572
1573 SYSCALL_DEFINE1(sysinfo, struct sysinfo __user *, info)
1574 {
1575         struct sysinfo val;
1576
1577         do_sysinfo(&val);
1578
1579         if (copy_to_user(info, &val, sizeof(struct sysinfo)))
1580                 return -EFAULT;
1581
1582         return 0;
1583 }
1584
1585 static int __cpuinit init_timers_cpu(int cpu)
1586 {
1587         int j;
1588         struct tvec_base *base;
1589         static char __cpuinitdata tvec_base_done[NR_CPUS];
1590
1591         if (!tvec_base_done[cpu]) {
1592                 static char boot_done;
1593
1594                 if (boot_done) {
1595                         /*
1596                          * The APs use this path later in boot
1597                          */
1598                         base = kmalloc_node(sizeof(*base),
1599                                                 GFP_KERNEL | __GFP_ZERO,
1600                                                 cpu_to_node(cpu));
1601                         if (!base)
1602                                 return -ENOMEM;
1603
1604                         /* Make sure that tvec_base is 2 byte aligned */
1605                         if (tbase_get_deferrable(base)) {
1606                                 WARN_ON(1);
1607                                 kfree(base);
1608                                 return -ENOMEM;
1609                         }
1610                         per_cpu(tvec_bases, cpu) = base;
1611                 } else {
1612                         /*
1613                          * This is for the boot CPU - we use compile-time
1614                          * static initialisation because per-cpu memory isn't
1615                          * ready yet and because the memory allocators are not
1616                          * initialised either.
1617                          */
1618                         boot_done = 1;
1619                         base = &boot_tvec_bases;
1620                 }
1621                 tvec_base_done[cpu] = 1;
1622         } else {
1623                 base = per_cpu(tvec_bases, cpu);
1624         }
1625
1626         spin_lock_init(&base->lock);
1627
1628         for (j = 0; j < TVN_SIZE; j++) {
1629                 INIT_LIST_HEAD(base->tv5.vec + j);
1630                 INIT_LIST_HEAD(base->tv4.vec + j);
1631                 INIT_LIST_HEAD(base->tv3.vec + j);
1632                 INIT_LIST_HEAD(base->tv2.vec + j);
1633         }
1634         for (j = 0; j < TVR_SIZE; j++)
1635                 INIT_LIST_HEAD(base->tv1.vec + j);
1636
1637         base->timer_jiffies = jiffies;
1638         base->next_timer = base->timer_jiffies;
1639         return 0;
1640 }
1641
1642 #ifdef CONFIG_HOTPLUG_CPU
1643 static void migrate_timer_list(struct tvec_base *new_base, struct list_head *head)
1644 {
1645         struct timer_list *timer;
1646
1647         while (!list_empty(head)) {
1648                 timer = list_first_entry(head, struct timer_list, entry);
1649                 detach_timer(timer, 0);
1650                 timer_set_base(timer, new_base);
1651                 if (time_before(timer->expires, new_base->next_timer) &&
1652                     !tbase_get_deferrable(timer->base))
1653                         new_base->next_timer = timer->expires;
1654                 internal_add_timer(new_base, timer);
1655         }
1656 }
1657
1658 static void __cpuinit migrate_timers(int cpu)
1659 {
1660         struct tvec_base *old_base;
1661         struct tvec_base *new_base;
1662         int i;
1663
1664         BUG_ON(cpu_online(cpu));
1665         old_base = per_cpu(tvec_bases, cpu);
1666         new_base = get_cpu_var(tvec_bases);
1667         /*
1668          * The caller is globally serialized and nobody else
1669          * takes two locks at once, deadlock is not possible.
1670          */
1671         spin_lock_irq(&new_base->lock);
1672         spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
1673
1674         BUG_ON(old_base->running_timer);
1675
1676         for (i = 0; i < TVR_SIZE; i++)
1677                 migrate_timer_list(new_base, old_base->tv1.vec + i);
1678         for (i = 0; i < TVN_SIZE; i++) {
1679                 migrate_timer_list(new_base, old_base->tv2.vec + i);
1680                 migrate_timer_list(new_base, old_base->tv3.vec + i);
1681                 migrate_timer_list(new_base, old_base->tv4.vec + i);
1682                 migrate_timer_list(new_base, old_base->tv5.vec + i);
1683         }
1684
1685         spin_unlock(&old_base->lock);
1686         spin_unlock_irq(&new_base->lock);
1687         put_cpu_var(tvec_bases);
1688 }
1689 #endif /* CONFIG_HOTPLUG_CPU */
1690
1691 static int __cpuinit timer_cpu_notify(struct notifier_block *self,
1692                                 unsigned long action, void *hcpu)
1693 {
1694         long cpu = (long)hcpu;
1695         int err;
1696
1697         switch(action) {
1698         case CPU_UP_PREPARE:
1699         case CPU_UP_PREPARE_FROZEN:
1700                 err = init_timers_cpu(cpu);
1701                 if (err < 0)
1702                         return notifier_from_errno(err);
1703                 break;
1704 #ifdef CONFIG_HOTPLUG_CPU
1705         case CPU_DEAD:
1706         case CPU_DEAD_FROZEN:
1707                 migrate_timers(cpu);
1708                 break;
1709 #endif
1710         default:
1711                 break;
1712         }
1713         return NOTIFY_OK;
1714 }
1715
1716 static struct notifier_block __cpuinitdata timers_nb = {
1717         .notifier_call  = timer_cpu_notify,
1718 };
1719
1720
1721 void __init init_timers(void)
1722 {
1723         int err = timer_cpu_notify(&timers_nb, (unsigned long)CPU_UP_PREPARE,
1724                                 (void *)(long)smp_processor_id());
1725
1726         init_timer_stats();
1727
1728         BUG_ON(err != NOTIFY_OK);
1729         register_cpu_notifier(&timers_nb);
1730         open_softirq(TIMER_SOFTIRQ, run_timer_softirq);
1731 }
1732
1733 /**
1734  * msleep - sleep safely even with waitqueue interruptions
1735  * @msecs: Time in milliseconds to sleep for
1736  */
1737 void msleep(unsigned int msecs)
1738 {
1739         unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1740
1741         while (timeout)
1742                 timeout = schedule_timeout_uninterruptible(timeout);
1743 }
1744
1745 EXPORT_SYMBOL(msleep);
1746
1747 /**
1748  * msleep_interruptible - sleep waiting for signals
1749  * @msecs: Time in milliseconds to sleep for
1750  */
1751 unsigned long msleep_interruptible(unsigned int msecs)
1752 {
1753         unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1754
1755         while (timeout && !signal_pending(current))
1756                 timeout = schedule_timeout_interruptible(timeout);
1757         return jiffies_to_msecs(timeout);
1758 }
1759
1760 EXPORT_SYMBOL(msleep_interruptible);