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