1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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_counter.h>
41#include <linux/sched.h>
42
43#include <asm/uaccess.h>
44#include <asm/unistd.h>
45#include <asm/div64.h>
46#include <asm/timex.h>
47#include <asm/io.h>
48
49u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES;
50
51EXPORT_SYMBOL(jiffies_64);
52
53
54
55
56#define TVN_BITS (CONFIG_BASE_SMALL ? 4 : 6)
57#define TVR_BITS (CONFIG_BASE_SMALL ? 6 : 8)
58#define TVN_SIZE (1 << TVN_BITS)
59#define TVR_SIZE (1 << TVR_BITS)
60#define TVN_MASK (TVN_SIZE - 1)
61#define TVR_MASK (TVR_SIZE - 1)
62
63struct tvec {
64 struct list_head vec[TVN_SIZE];
65};
66
67struct tvec_root {
68 struct list_head vec[TVR_SIZE];
69};
70
71struct tvec_base {
72 spinlock_t lock;
73 struct timer_list *running_timer;
74 unsigned long timer_jiffies;
75 struct tvec_root tv1;
76 struct tvec tv2;
77 struct tvec tv3;
78 struct tvec tv4;
79 struct tvec tv5;
80} ____cacheline_aligned;
81
82struct tvec_base boot_tvec_bases;
83EXPORT_SYMBOL(boot_tvec_bases);
84static DEFINE_PER_CPU(struct tvec_base *, tvec_bases) = &boot_tvec_bases;
85
86
87
88
89
90
91#define TBASE_DEFERRABLE_FLAG (0x1)
92
93
94static inline unsigned int tbase_get_deferrable(struct tvec_base *base)
95{
96 return ((unsigned int)(unsigned long)base & TBASE_DEFERRABLE_FLAG);
97}
98
99static inline struct tvec_base *tbase_get_base(struct tvec_base *base)
100{
101 return ((struct tvec_base *)((unsigned long)base & ~TBASE_DEFERRABLE_FLAG));
102}
103
104static inline void timer_set_deferrable(struct timer_list *timer)
105{
106 timer->base = ((struct tvec_base *)((unsigned long)(timer->base) |
107 TBASE_DEFERRABLE_FLAG));
108}
109
110static inline void
111timer_set_base(struct timer_list *timer, struct tvec_base *new_base)
112{
113 timer->base = (struct tvec_base *)((unsigned long)(new_base) |
114 tbase_get_deferrable(timer->base));
115}
116
117static unsigned long round_jiffies_common(unsigned long j, int cpu,
118 bool force_up)
119{
120 int rem;
121 unsigned long original = j;
122
123
124
125
126
127
128
129
130
131 j += cpu * 3;
132
133 rem = j % HZ;
134
135
136
137
138
139
140
141
142 if (rem < HZ/4 && !force_up)
143 j = j - rem;
144 else
145 j = j - rem + HZ;
146
147
148 j -= cpu * 3;
149
150 if (j <= jiffies)
151 return original;
152 return j;
153}
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175unsigned long __round_jiffies(unsigned long j, int cpu)
176{
177 return round_jiffies_common(j, cpu, false);
178}
179EXPORT_SYMBOL_GPL(__round_jiffies);
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201unsigned long __round_jiffies_relative(unsigned long j, int cpu)
202{
203 unsigned long j0 = jiffies;
204
205
206 return round_jiffies_common(j + j0, cpu, false) - j0;
207}
208EXPORT_SYMBOL_GPL(__round_jiffies_relative);
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225unsigned long round_jiffies(unsigned long j)
226{
227 return round_jiffies_common(j, raw_smp_processor_id(), false);
228}
229EXPORT_SYMBOL_GPL(round_jiffies);
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246unsigned long round_jiffies_relative(unsigned long j)
247{
248 return __round_jiffies_relative(j, raw_smp_processor_id());
249}
250EXPORT_SYMBOL_GPL(round_jiffies_relative);
251
252
253
254
255
256
257
258
259
260
261
262unsigned long __round_jiffies_up(unsigned long j, int cpu)
263{
264 return round_jiffies_common(j, cpu, true);
265}
266EXPORT_SYMBOL_GPL(__round_jiffies_up);
267
268
269
270
271
272
273
274
275
276
277
278unsigned long __round_jiffies_up_relative(unsigned long j, int cpu)
279{
280 unsigned long j0 = jiffies;
281
282
283 return round_jiffies_common(j + j0, cpu, true) - j0;
284}
285EXPORT_SYMBOL_GPL(__round_jiffies_up_relative);
286
287
288
289
290
291
292
293
294
295
296unsigned long round_jiffies_up(unsigned long j)
297{
298 return round_jiffies_common(j, raw_smp_processor_id(), true);
299}
300EXPORT_SYMBOL_GPL(round_jiffies_up);
301
302
303
304
305
306
307
308
309
310
311unsigned long round_jiffies_up_relative(unsigned long j)
312{
313 return __round_jiffies_up_relative(j, raw_smp_processor_id());
314}
315EXPORT_SYMBOL_GPL(round_jiffies_up_relative);
316
317
318static inline void set_running_timer(struct tvec_base *base,
319 struct timer_list *timer)
320{
321#ifdef CONFIG_SMP
322 base->running_timer = timer;
323#endif
324}
325
326static void internal_add_timer(struct tvec_base *base, struct timer_list *timer)
327{
328 unsigned long expires = timer->expires;
329 unsigned long idx = expires - base->timer_jiffies;
330 struct list_head *vec;
331
332 if (idx < TVR_SIZE) {
333 int i = expires & TVR_MASK;
334 vec = base->tv1.vec + i;
335 } else if (idx < 1 << (TVR_BITS + TVN_BITS)) {
336 int i = (expires >> TVR_BITS) & TVN_MASK;
337 vec = base->tv2.vec + i;
338 } else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) {
339 int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK;
340 vec = base->tv3.vec + i;
341 } else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) {
342 int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK;
343 vec = base->tv4.vec + i;
344 } else if ((signed long) idx < 0) {
345
346
347
348
349 vec = base->tv1.vec + (base->timer_jiffies & TVR_MASK);
350 } else {
351 int i;
352
353
354
355 if (idx > 0xffffffffUL) {
356 idx = 0xffffffffUL;
357 expires = idx + base->timer_jiffies;
358 }
359 i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK;
360 vec = base->tv5.vec + i;
361 }
362
363
364
365 list_add_tail(&timer->entry, vec);
366}
367
368#ifdef CONFIG_TIMER_STATS
369void __timer_stats_timer_set_start_info(struct timer_list *timer, void *addr)
370{
371 if (timer->start_site)
372 return;
373
374 timer->start_site = addr;
375 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
376 timer->start_pid = current->pid;
377}
378
379static void timer_stats_account_timer(struct timer_list *timer)
380{
381 unsigned int flag = 0;
382
383 if (likely(!timer->start_site))
384 return;
385 if (unlikely(tbase_get_deferrable(timer->base)))
386 flag |= TIMER_STATS_FLAG_DEFERRABLE;
387
388 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
389 timer->function, timer->start_comm, flag);
390}
391
392#else
393static void timer_stats_account_timer(struct timer_list *timer) {}
394#endif
395
396#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
397
398static struct debug_obj_descr timer_debug_descr;
399
400
401
402
403
404static int timer_fixup_init(void *addr, enum debug_obj_state state)
405{
406 struct timer_list *timer = addr;
407
408 switch (state) {
409 case ODEBUG_STATE_ACTIVE:
410 del_timer_sync(timer);
411 debug_object_init(timer, &timer_debug_descr);
412 return 1;
413 default:
414 return 0;
415 }
416}
417
418
419
420
421
422
423static int timer_fixup_activate(void *addr, enum debug_obj_state state)
424{
425 struct timer_list *timer = addr;
426
427 switch (state) {
428
429 case ODEBUG_STATE_NOTAVAILABLE:
430
431
432
433
434
435 if (timer->entry.next == NULL &&
436 timer->entry.prev == TIMER_ENTRY_STATIC) {
437 debug_object_init(timer, &timer_debug_descr);
438 debug_object_activate(timer, &timer_debug_descr);
439 return 0;
440 } else {
441 WARN_ON_ONCE(1);
442 }
443 return 0;
444
445 case ODEBUG_STATE_ACTIVE:
446 WARN_ON(1);
447
448 default:
449 return 0;
450 }
451}
452
453
454
455
456
457static int timer_fixup_free(void *addr, enum debug_obj_state state)
458{
459 struct timer_list *timer = addr;
460
461 switch (state) {
462 case ODEBUG_STATE_ACTIVE:
463 del_timer_sync(timer);
464 debug_object_free(timer, &timer_debug_descr);
465 return 1;
466 default:
467 return 0;
468 }
469}
470
471static struct debug_obj_descr timer_debug_descr = {
472 .name = "timer_list",
473 .fixup_init = timer_fixup_init,
474 .fixup_activate = timer_fixup_activate,
475 .fixup_free = timer_fixup_free,
476};
477
478static inline void debug_timer_init(struct timer_list *timer)
479{
480 debug_object_init(timer, &timer_debug_descr);
481}
482
483static inline void debug_timer_activate(struct timer_list *timer)
484{
485 debug_object_activate(timer, &timer_debug_descr);
486}
487
488static inline void debug_timer_deactivate(struct timer_list *timer)
489{
490 debug_object_deactivate(timer, &timer_debug_descr);
491}
492
493static inline void debug_timer_free(struct timer_list *timer)
494{
495 debug_object_free(timer, &timer_debug_descr);
496}
497
498static void __init_timer(struct timer_list *timer,
499 const char *name,
500 struct lock_class_key *key);
501
502void init_timer_on_stack_key(struct timer_list *timer,
503 const char *name,
504 struct lock_class_key *key)
505{
506 debug_object_init_on_stack(timer, &timer_debug_descr);
507 __init_timer(timer, name, key);
508}
509EXPORT_SYMBOL_GPL(init_timer_on_stack_key);
510
511void destroy_timer_on_stack(struct timer_list *timer)
512{
513 debug_object_free(timer, &timer_debug_descr);
514}
515EXPORT_SYMBOL_GPL(destroy_timer_on_stack);
516
517#else
518static inline void debug_timer_init(struct timer_list *timer) { }
519static inline void debug_timer_activate(struct timer_list *timer) { }
520static inline void debug_timer_deactivate(struct timer_list *timer) { }
521#endif
522
523static void __init_timer(struct timer_list *timer,
524 const char *name,
525 struct lock_class_key *key)
526{
527 timer->entry.next = NULL;
528 timer->base = __raw_get_cpu_var(tvec_bases);
529#ifdef CONFIG_TIMER_STATS
530 timer->start_site = NULL;
531 timer->start_pid = -1;
532 memset(timer->start_comm, 0, TASK_COMM_LEN);
533#endif
534 lockdep_init_map(&timer->lockdep_map, name, key, 0);
535}
536
537
538
539
540
541
542
543
544
545
546
547void init_timer_key(struct timer_list *timer,
548 const char *name,
549 struct lock_class_key *key)
550{
551 debug_timer_init(timer);
552 __init_timer(timer, name, key);
553}
554EXPORT_SYMBOL(init_timer_key);
555
556void init_timer_deferrable_key(struct timer_list *timer,
557 const char *name,
558 struct lock_class_key *key)
559{
560 init_timer_key(timer, name, key);
561 timer_set_deferrable(timer);
562}
563EXPORT_SYMBOL(init_timer_deferrable_key);
564
565static inline void detach_timer(struct timer_list *timer,
566 int clear_pending)
567{
568 struct list_head *entry = &timer->entry;
569
570 debug_timer_deactivate(timer);
571
572 __list_del(entry->prev, entry->next);
573 if (clear_pending)
574 entry->next = NULL;
575 entry->prev = LIST_POISON2;
576}
577
578
579
580
581
582
583
584
585
586
587
588
589
590static struct tvec_base *lock_timer_base(struct timer_list *timer,
591 unsigned long *flags)
592 __acquires(timer->base->lock)
593{
594 struct tvec_base *base;
595
596 for (;;) {
597 struct tvec_base *prelock_base = timer->base;
598 base = tbase_get_base(prelock_base);
599 if (likely(base != NULL)) {
600 spin_lock_irqsave(&base->lock, *flags);
601 if (likely(prelock_base == timer->base))
602 return base;
603
604 spin_unlock_irqrestore(&base->lock, *flags);
605 }
606 cpu_relax();
607 }
608}
609
610static inline int
611__mod_timer(struct timer_list *timer, unsigned long expires,
612 bool pending_only, int pinned)
613{
614 struct tvec_base *base, *new_base;
615 unsigned long flags;
616 int ret = 0 , cpu;
617
618 timer_stats_timer_set_start_info(timer);
619 BUG_ON(!timer->function);
620
621 base = lock_timer_base(timer, &flags);
622
623 if (timer_pending(timer)) {
624 detach_timer(timer, 0);
625 ret = 1;
626 } else {
627 if (pending_only)
628 goto out_unlock;
629 }
630
631 debug_timer_activate(timer);
632
633 new_base = __get_cpu_var(tvec_bases);
634
635 cpu = smp_processor_id();
636
637#if defined(CONFIG_NO_HZ) && defined(CONFIG_SMP)
638 if (!pinned && get_sysctl_timer_migration() && idle_cpu(cpu)) {
639 int preferred_cpu = get_nohz_load_balancer();
640
641 if (preferred_cpu >= 0)
642 cpu = preferred_cpu;
643 }
644#endif
645 new_base = per_cpu(tvec_bases, cpu);
646
647 if (base != new_base) {
648
649
650
651
652
653
654
655 if (likely(base->running_timer != timer)) {
656
657 timer_set_base(timer, NULL);
658 spin_unlock(&base->lock);
659 base = new_base;
660 spin_lock(&base->lock);
661 timer_set_base(timer, base);
662 }
663 }
664
665 timer->expires = expires;
666 internal_add_timer(base, timer);
667
668out_unlock:
669 spin_unlock_irqrestore(&base->lock, flags);
670
671 return ret;
672}
673
674
675
676
677
678
679
680
681
682
683
684int mod_timer_pending(struct timer_list *timer, unsigned long expires)
685{
686 return __mod_timer(timer, expires, true, TIMER_NOT_PINNED);
687}
688EXPORT_SYMBOL(mod_timer_pending);
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710int mod_timer(struct timer_list *timer, unsigned long expires)
711{
712
713
714
715
716
717 if (timer_pending(timer) && timer->expires == expires)
718 return 1;
719
720 return __mod_timer(timer, expires, false, TIMER_NOT_PINNED);
721}
722EXPORT_SYMBOL(mod_timer);
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737int mod_timer_pinned(struct timer_list *timer, unsigned long expires)
738{
739 if (timer->expires == expires && timer_pending(timer))
740 return 1;
741
742 return __mod_timer(timer, expires, false, TIMER_PINNED);
743}
744EXPORT_SYMBOL(mod_timer_pinned);
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760void add_timer(struct timer_list *timer)
761{
762 BUG_ON(timer_pending(timer));
763 mod_timer(timer, timer->expires);
764}
765EXPORT_SYMBOL(add_timer);
766
767
768
769
770
771
772
773
774void add_timer_on(struct timer_list *timer, int cpu)
775{
776 struct tvec_base *base = per_cpu(tvec_bases, cpu);
777 unsigned long flags;
778
779 timer_stats_timer_set_start_info(timer);
780 BUG_ON(timer_pending(timer) || !timer->function);
781 spin_lock_irqsave(&base->lock, flags);
782 timer_set_base(timer, base);
783 debug_timer_activate(timer);
784 internal_add_timer(base, timer);
785
786
787
788
789
790
791
792
793 wake_up_idle_cpu(cpu);
794 spin_unlock_irqrestore(&base->lock, flags);
795}
796EXPORT_SYMBOL_GPL(add_timer_on);
797
798
799
800
801
802
803
804
805
806
807
808
809int del_timer(struct timer_list *timer)
810{
811 struct tvec_base *base;
812 unsigned long flags;
813 int ret = 0;
814
815 timer_stats_timer_clear_start_info(timer);
816 if (timer_pending(timer)) {
817 base = lock_timer_base(timer, &flags);
818 if (timer_pending(timer)) {
819 detach_timer(timer, 1);
820 ret = 1;
821 }
822 spin_unlock_irqrestore(&base->lock, flags);
823 }
824
825 return ret;
826}
827EXPORT_SYMBOL(del_timer);
828
829#ifdef CONFIG_SMP
830
831
832
833
834
835
836
837
838
839int try_to_del_timer_sync(struct timer_list *timer)
840{
841 struct tvec_base *base;
842 unsigned long flags;
843 int ret = -1;
844
845 base = lock_timer_base(timer, &flags);
846
847 if (base->running_timer == timer)
848 goto out;
849
850 ret = 0;
851 if (timer_pending(timer)) {
852 detach_timer(timer, 1);
853 ret = 1;
854 }
855out:
856 spin_unlock_irqrestore(&base->lock, flags);
857
858 return ret;
859}
860EXPORT_SYMBOL(try_to_del_timer_sync);
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879int del_timer_sync(struct timer_list *timer)
880{
881#ifdef CONFIG_LOCKDEP
882 unsigned long flags;
883
884 local_irq_save(flags);
885 lock_map_acquire(&timer->lockdep_map);
886 lock_map_release(&timer->lockdep_map);
887 local_irq_restore(flags);
888#endif
889
890 for (;;) {
891 int ret = try_to_del_timer_sync(timer);
892 if (ret >= 0)
893 return ret;
894 cpu_relax();
895 }
896}
897EXPORT_SYMBOL(del_timer_sync);
898#endif
899
900static int cascade(struct tvec_base *base, struct tvec *tv, int index)
901{
902
903 struct timer_list *timer, *tmp;
904 struct list_head tv_list;
905
906 list_replace_init(tv->vec + index, &tv_list);
907
908
909
910
911
912 list_for_each_entry_safe(timer, tmp, &tv_list, entry) {
913 BUG_ON(tbase_get_base(timer->base) != base);
914 internal_add_timer(base, timer);
915 }
916
917 return index;
918}
919
920#define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK)
921
922
923
924
925
926
927
928
929static inline void __run_timers(struct tvec_base *base)
930{
931 struct timer_list *timer;
932
933 spin_lock_irq(&base->lock);
934 while (time_after_eq(jiffies, base->timer_jiffies)) {
935 struct list_head work_list;
936 struct list_head *head = &work_list;
937 int index = base->timer_jiffies & TVR_MASK;
938
939
940
941
942 if (!index &&
943 (!cascade(base, &base->tv2, INDEX(0))) &&
944 (!cascade(base, &base->tv3, INDEX(1))) &&
945 !cascade(base, &base->tv4, INDEX(2)))
946 cascade(base, &base->tv5, INDEX(3));
947 ++base->timer_jiffies;
948 list_replace_init(base->tv1.vec + index, &work_list);
949 while (!list_empty(head)) {
950 void (*fn)(unsigned long);
951 unsigned long data;
952
953 timer = list_first_entry(head, struct timer_list,entry);
954 fn = timer->function;
955 data = timer->data;
956
957 timer_stats_account_timer(timer);
958
959 set_running_timer(base, timer);
960 detach_timer(timer, 1);
961
962 spin_unlock_irq(&base->lock);
963 {
964 int preempt_count = preempt_count();
965
966#ifdef CONFIG_LOCKDEP
967
968
969
970
971
972
973
974
975
976 struct lockdep_map lockdep_map =
977 timer->lockdep_map;
978#endif
979
980
981
982
983
984
985 lock_map_acquire(&lockdep_map);
986
987 fn(data);
988
989 lock_map_release(&lockdep_map);
990
991 if (preempt_count != preempt_count()) {
992 printk(KERN_ERR "huh, entered %p "
993 "with preempt_count %08x, exited"
994 " with %08x?\n",
995 fn, preempt_count,
996 preempt_count());
997 BUG();
998 }
999 }
1000 spin_lock_irq(&base->lock);
1001 }
1002 }
1003 set_running_timer(base, NULL);
1004 spin_unlock_irq(&base->lock);
1005}
1006
1007#ifdef CONFIG_NO_HZ
1008
1009
1010
1011
1012
1013static unsigned long __next_timer_interrupt(struct tvec_base *base)
1014{
1015 unsigned long timer_jiffies = base->timer_jiffies;
1016 unsigned long expires = timer_jiffies + NEXT_TIMER_MAX_DELTA;
1017 int index, slot, array, found = 0;
1018 struct timer_list *nte;
1019 struct tvec *varray[4];
1020
1021
1022 index = slot = timer_jiffies & TVR_MASK;
1023 do {
1024 list_for_each_entry(nte, base->tv1.vec + slot, entry) {
1025 if (tbase_get_deferrable(nte->base))
1026 continue;
1027
1028 found = 1;
1029 expires = nte->expires;
1030
1031 if (!index || slot < index)
1032 goto cascade;
1033 return expires;
1034 }
1035 slot = (slot + 1) & TVR_MASK;
1036 } while (slot != index);
1037
1038cascade:
1039
1040 if (index)
1041 timer_jiffies += TVR_SIZE - index;
1042 timer_jiffies >>= TVR_BITS;
1043
1044
1045 varray[0] = &base->tv2;
1046 varray[1] = &base->tv3;
1047 varray[2] = &base->tv4;
1048 varray[3] = &base->tv5;
1049
1050 for (array = 0; array < 4; array++) {
1051 struct tvec *varp = varray[array];
1052
1053 index = slot = timer_jiffies & TVN_MASK;
1054 do {
1055 list_for_each_entry(nte, varp->vec + slot, entry) {
1056 if (tbase_get_deferrable(nte->base))
1057 continue;
1058
1059 found = 1;
1060 if (time_before(nte->expires, expires))
1061 expires = nte->expires;
1062 }
1063
1064
1065
1066
1067 if (found) {
1068
1069 if (!index || slot < index)
1070 break;
1071 return expires;
1072 }
1073 slot = (slot + 1) & TVN_MASK;
1074 } while (slot != index);
1075
1076 if (index)
1077 timer_jiffies += TVN_SIZE - index;
1078 timer_jiffies >>= TVN_BITS;
1079 }
1080 return expires;
1081}
1082
1083
1084
1085
1086
1087static unsigned long cmp_next_hrtimer_event(unsigned long now,
1088 unsigned long expires)
1089{
1090 ktime_t hr_delta = hrtimer_get_next_event();
1091 struct timespec tsdelta;
1092 unsigned long delta;
1093
1094 if (hr_delta.tv64 == KTIME_MAX)
1095 return expires;
1096
1097
1098
1099
1100 if (hr_delta.tv64 <= 0)
1101 return now + 1;
1102
1103 tsdelta = ktime_to_timespec(hr_delta);
1104 delta = timespec_to_jiffies(&tsdelta);
1105
1106
1107
1108
1109
1110 if (delta > NEXT_TIMER_MAX_DELTA)
1111 delta = NEXT_TIMER_MAX_DELTA;
1112
1113
1114
1115
1116
1117
1118
1119 if (delta < 1)
1120 delta = 1;
1121 now += delta;
1122 if (time_before(now, expires))
1123 return now;
1124 return expires;
1125}
1126
1127
1128
1129
1130
1131unsigned long get_next_timer_interrupt(unsigned long now)
1132{
1133 struct tvec_base *base = __get_cpu_var(tvec_bases);
1134 unsigned long expires;
1135
1136 spin_lock(&base->lock);
1137 expires = __next_timer_interrupt(base);
1138 spin_unlock(&base->lock);
1139
1140 if (time_before_eq(expires, now))
1141 return now;
1142
1143 return cmp_next_hrtimer_event(now, expires);
1144}
1145#endif
1146
1147
1148
1149
1150
1151void update_process_times(int user_tick)
1152{
1153 struct task_struct *p = current;
1154 int cpu = smp_processor_id();
1155
1156
1157 account_process_tick(p, user_tick);
1158 run_local_timers();
1159 if (rcu_pending(cpu))
1160 rcu_check_callbacks(cpu, user_tick);
1161 printk_tick();
1162 scheduler_tick();
1163 run_posix_cpu_timers(p);
1164}
1165
1166
1167
1168
1169static void run_timer_softirq(struct softirq_action *h)
1170{
1171 struct tvec_base *base = __get_cpu_var(tvec_bases);
1172
1173 perf_counter_do_pending();
1174
1175 hrtimer_run_pending();
1176
1177 if (time_after_eq(jiffies, base->timer_jiffies))
1178 __run_timers(base);
1179}
1180
1181
1182
1183
1184void run_local_timers(void)
1185{
1186 hrtimer_run_queues();
1187 raise_softirq(TIMER_SOFTIRQ);
1188 softlockup_tick();
1189}
1190
1191
1192
1193
1194
1195
1196
1197void do_timer(unsigned long ticks)
1198{
1199 jiffies_64 += ticks;
1200 update_wall_time();
1201 calc_global_load();
1202}
1203
1204#ifdef __ARCH_WANT_SYS_ALARM
1205
1206
1207
1208
1209
1210SYSCALL_DEFINE1(alarm, unsigned int, seconds)
1211{
1212 return alarm_setitimer(seconds);
1213}
1214
1215#endif
1216
1217#ifndef __alpha__
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233SYSCALL_DEFINE0(getpid)
1234{
1235 return task_tgid_vnr(current);
1236}
1237
1238
1239
1240
1241
1242
1243
1244SYSCALL_DEFINE0(getppid)
1245{
1246 int pid;
1247
1248 rcu_read_lock();
1249 pid = task_tgid_vnr(current->real_parent);
1250 rcu_read_unlock();
1251
1252 return pid;
1253}
1254
1255SYSCALL_DEFINE0(getuid)
1256{
1257
1258 return current_uid();
1259}
1260
1261SYSCALL_DEFINE0(geteuid)
1262{
1263
1264 return current_euid();
1265}
1266
1267SYSCALL_DEFINE0(getgid)
1268{
1269
1270 return current_gid();
1271}
1272
1273SYSCALL_DEFINE0(getegid)
1274{
1275
1276 return current_egid();
1277}
1278
1279#endif
1280
1281static void process_timeout(unsigned long __data)
1282{
1283 wake_up_process((struct task_struct *)__data);
1284}
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312signed long __sched schedule_timeout(signed long timeout)
1313{
1314 struct timer_list timer;
1315 unsigned long expire;
1316
1317 switch (timeout)
1318 {
1319 case MAX_SCHEDULE_TIMEOUT:
1320
1321
1322
1323
1324
1325
1326
1327 schedule();
1328 goto out;
1329 default:
1330
1331
1332
1333
1334
1335
1336
1337 if (timeout < 0) {
1338 printk(KERN_ERR "schedule_timeout: wrong timeout "
1339 "value %lx\n", timeout);
1340 dump_stack();
1341 current->state = TASK_RUNNING;
1342 goto out;
1343 }
1344 }
1345
1346 expire = timeout + jiffies;
1347
1348 setup_timer_on_stack(&timer, process_timeout, (unsigned long)current);
1349 __mod_timer(&timer, expire, false, TIMER_NOT_PINNED);
1350 schedule();
1351 del_singleshot_timer_sync(&timer);
1352
1353
1354 destroy_timer_on_stack(&timer);
1355
1356 timeout = expire - jiffies;
1357
1358 out:
1359 return timeout < 0 ? 0 : timeout;
1360}
1361EXPORT_SYMBOL(schedule_timeout);
1362
1363
1364
1365
1366
1367signed long __sched schedule_timeout_interruptible(signed long timeout)
1368{
1369 __set_current_state(TASK_INTERRUPTIBLE);
1370 return schedule_timeout(timeout);
1371}
1372EXPORT_SYMBOL(schedule_timeout_interruptible);
1373
1374signed long __sched schedule_timeout_killable(signed long timeout)
1375{
1376 __set_current_state(TASK_KILLABLE);
1377 return schedule_timeout(timeout);
1378}
1379EXPORT_SYMBOL(schedule_timeout_killable);
1380
1381signed long __sched schedule_timeout_uninterruptible(signed long timeout)
1382{
1383 __set_current_state(TASK_UNINTERRUPTIBLE);
1384 return schedule_timeout(timeout);
1385}
1386EXPORT_SYMBOL(schedule_timeout_uninterruptible);
1387
1388
1389SYSCALL_DEFINE0(gettid)
1390{
1391 return task_pid_vnr(current);
1392}
1393
1394
1395
1396
1397
1398int do_sysinfo(struct sysinfo *info)
1399{
1400 unsigned long mem_total, sav_total;
1401 unsigned int mem_unit, bitcount;
1402 struct timespec tp;
1403
1404 memset(info, 0, sizeof(struct sysinfo));
1405
1406 ktime_get_ts(&tp);
1407 monotonic_to_bootbased(&tp);
1408 info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
1409
1410 get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT);
1411
1412 info->procs = nr_threads;
1413
1414 si_meminfo(info);
1415 si_swapinfo(info);
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426 mem_total = info->totalram + info->totalswap;
1427 if (mem_total < info->totalram || mem_total < info->totalswap)
1428 goto out;
1429 bitcount = 0;
1430 mem_unit = info->mem_unit;
1431 while (mem_unit > 1) {
1432 bitcount++;
1433 mem_unit >>= 1;
1434 sav_total = mem_total;
1435 mem_total <<= 1;
1436 if (mem_total < sav_total)
1437 goto out;
1438 }
1439
1440
1441
1442
1443
1444
1445
1446
1447 info->mem_unit = 1;
1448 info->totalram <<= bitcount;
1449 info->freeram <<= bitcount;
1450 info->sharedram <<= bitcount;
1451 info->bufferram <<= bitcount;
1452 info->totalswap <<= bitcount;
1453 info->freeswap <<= bitcount;
1454 info->totalhigh <<= bitcount;
1455 info->freehigh <<= bitcount;
1456
1457out:
1458 return 0;
1459}
1460
1461SYSCALL_DEFINE1(sysinfo, struct sysinfo __user *, info)
1462{
1463 struct sysinfo val;
1464
1465 do_sysinfo(&val);
1466
1467 if (copy_to_user(info, &val, sizeof(struct sysinfo)))
1468 return -EFAULT;
1469
1470 return 0;
1471}
1472
1473static int __cpuinit init_timers_cpu(int cpu)
1474{
1475 int j;
1476 struct tvec_base *base;
1477 static char __cpuinitdata tvec_base_done[NR_CPUS];
1478
1479 if (!tvec_base_done[cpu]) {
1480 static char boot_done;
1481
1482 if (boot_done) {
1483
1484
1485
1486 base = kmalloc_node(sizeof(*base),
1487 GFP_KERNEL | __GFP_ZERO,
1488 cpu_to_node(cpu));
1489 if (!base)
1490 return -ENOMEM;
1491
1492
1493 if (tbase_get_deferrable(base)) {
1494 WARN_ON(1);
1495 kfree(base);
1496 return -ENOMEM;
1497 }
1498 per_cpu(tvec_bases, cpu) = base;
1499 } else {
1500
1501
1502
1503
1504
1505
1506 boot_done = 1;
1507 base = &boot_tvec_bases;
1508 }
1509 tvec_base_done[cpu] = 1;
1510 } else {
1511 base = per_cpu(tvec_bases, cpu);
1512 }
1513
1514 spin_lock_init(&base->lock);
1515
1516 for (j = 0; j < TVN_SIZE; j++) {
1517 INIT_LIST_HEAD(base->tv5.vec + j);
1518 INIT_LIST_HEAD(base->tv4.vec + j);
1519 INIT_LIST_HEAD(base->tv3.vec + j);
1520 INIT_LIST_HEAD(base->tv2.vec + j);
1521 }
1522 for (j = 0; j < TVR_SIZE; j++)
1523 INIT_LIST_HEAD(base->tv1.vec + j);
1524
1525 base->timer_jiffies = jiffies;
1526 return 0;
1527}
1528
1529#ifdef CONFIG_HOTPLUG_CPU
1530static void migrate_timer_list(struct tvec_base *new_base, struct list_head *head)
1531{
1532 struct timer_list *timer;
1533
1534 while (!list_empty(head)) {
1535 timer = list_first_entry(head, struct timer_list, entry);
1536 detach_timer(timer, 0);
1537 timer_set_base(timer, new_base);
1538 internal_add_timer(new_base, timer);
1539 }
1540}
1541
1542static void __cpuinit migrate_timers(int cpu)
1543{
1544 struct tvec_base *old_base;
1545 struct tvec_base *new_base;
1546 int i;
1547
1548 BUG_ON(cpu_online(cpu));
1549 old_base = per_cpu(tvec_bases, cpu);
1550 new_base = get_cpu_var(tvec_bases);
1551
1552
1553
1554
1555 spin_lock_irq(&new_base->lock);
1556 spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
1557
1558 BUG_ON(old_base->running_timer);
1559
1560 for (i = 0; i < TVR_SIZE; i++)
1561 migrate_timer_list(new_base, old_base->tv1.vec + i);
1562 for (i = 0; i < TVN_SIZE; i++) {
1563 migrate_timer_list(new_base, old_base->tv2.vec + i);
1564 migrate_timer_list(new_base, old_base->tv3.vec + i);
1565 migrate_timer_list(new_base, old_base->tv4.vec + i);
1566 migrate_timer_list(new_base, old_base->tv5.vec + i);
1567 }
1568
1569 spin_unlock(&old_base->lock);
1570 spin_unlock_irq(&new_base->lock);
1571 put_cpu_var(tvec_bases);
1572}
1573#endif
1574
1575static int __cpuinit timer_cpu_notify(struct notifier_block *self,
1576 unsigned long action, void *hcpu)
1577{
1578 long cpu = (long)hcpu;
1579 switch(action) {
1580 case CPU_UP_PREPARE:
1581 case CPU_UP_PREPARE_FROZEN:
1582 if (init_timers_cpu(cpu) < 0)
1583 return NOTIFY_BAD;
1584 break;
1585#ifdef CONFIG_HOTPLUG_CPU
1586 case CPU_DEAD:
1587 case CPU_DEAD_FROZEN:
1588 migrate_timers(cpu);
1589 break;
1590#endif
1591 default:
1592 break;
1593 }
1594 return NOTIFY_OK;
1595}
1596
1597static struct notifier_block __cpuinitdata timers_nb = {
1598 .notifier_call = timer_cpu_notify,
1599};
1600
1601
1602void __init init_timers(void)
1603{
1604 int err = timer_cpu_notify(&timers_nb, (unsigned long)CPU_UP_PREPARE,
1605 (void *)(long)smp_processor_id());
1606
1607 init_timer_stats();
1608
1609 BUG_ON(err == NOTIFY_BAD);
1610 register_cpu_notifier(&timers_nb);
1611 open_softirq(TIMER_SOFTIRQ, run_timer_softirq);
1612}
1613
1614
1615
1616
1617
1618void msleep(unsigned int msecs)
1619{
1620 unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1621
1622 while (timeout)
1623 timeout = schedule_timeout_uninterruptible(timeout);
1624}
1625
1626EXPORT_SYMBOL(msleep);
1627
1628
1629
1630
1631
1632unsigned long msleep_interruptible(unsigned int msecs)
1633{
1634 unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1635
1636 while (timeout && !signal_pending(current))
1637 timeout = schedule_timeout_interruptible(timeout);
1638 return jiffies_to_msecs(timeout);
1639}
1640
1641EXPORT_SYMBOL(msleep_interruptible);
1642