| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/kernel/timer.c | 
|  | 3 | * | 
| john stultz | 8524070 | 2007-05-08 00:27:59 -0700 | [diff] [blame] | 4 | *  Kernel internal timers, basic process system calls | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * | 
|  | 6 | *  Copyright (C) 1991, 1992  Linus Torvalds | 
|  | 7 | * | 
|  | 8 | *  1997-01-28  Modified by Finn Arne Gangstad to make timers scale better. | 
|  | 9 | * | 
|  | 10 | *  1997-09-10  Updated NTP code according to technical memorandum Jan '96 | 
|  | 11 | *              "A Kernel Model for Precision Timekeeping" by Dave Mills | 
|  | 12 | *  1998-12-24  Fixed a xtime SMP race (we need the xtime_lock rw spinlock to | 
|  | 13 | *              serialize accesses to xtime/lost_ticks). | 
|  | 14 | *                              Copyright (C) 1998  Andrea Arcangeli | 
|  | 15 | *  1999-03-10  Improved NTP compatibility by Ulrich Windl | 
|  | 16 | *  2002-05-31	Move sys_sysinfo here and make its locking sane, Robert Love | 
|  | 17 | *  2000-10-05  Implemented scalable SMP per-CPU timer handling. | 
|  | 18 | *                              Copyright (C) 2000, 2001, 2002  Ingo Molnar | 
|  | 19 | *              Designed by David S. Miller, Alexey Kuznetsov and Ingo Molnar | 
|  | 20 | */ | 
|  | 21 |  | 
|  | 22 | #include <linux/kernel_stat.h> | 
|  | 23 | #include <linux/module.h> | 
|  | 24 | #include <linux/interrupt.h> | 
|  | 25 | #include <linux/percpu.h> | 
|  | 26 | #include <linux/init.h> | 
|  | 27 | #include <linux/mm.h> | 
|  | 28 | #include <linux/swap.h> | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 29 | #include <linux/pid_namespace.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> | 
| Adrian Bunk | 97a41e2 | 2006-01-08 01:02:17 -0800 | [diff] [blame] | 37 | #include <linux/delay.h> | 
| Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 38 | #include <linux/tick.h> | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 39 | #include <linux/kallsyms.h> | 
| Peter Zijlstra | 925d519 | 2009-03-30 19:07:02 +0200 | [diff] [blame] | 40 | #include <linux/perf_counter.h> | 
| Arun R Bharadwaj | eea08f3 | 2009-04-16 12:16:41 +0530 | [diff] [blame] | 41 | #include <linux/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
| Thomas Gleixner | ecea8d1 | 2005-10-30 15:03:00 -0800 | [diff] [blame] | 49 | u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES; | 
|  | 50 |  | 
|  | 51 | EXPORT_SYMBOL(jiffies_64); | 
|  | 52 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /* | 
|  | 54 | * per-CPU timer vector definitions: | 
|  | 55 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 63 | struct tvec { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | struct list_head vec[TVN_SIZE]; | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 65 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 67 | struct tvec_root { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | struct list_head vec[TVR_SIZE]; | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 69 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 71 | struct tvec_base { | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 72 | spinlock_t lock; | 
|  | 73 | struct timer_list *running_timer; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | unsigned long timer_jiffies; | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 75 | struct tvec_root tv1; | 
|  | 76 | struct tvec tv2; | 
|  | 77 | struct tvec tv3; | 
|  | 78 | struct tvec tv4; | 
|  | 79 | struct tvec tv5; | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 80 | } ____cacheline_aligned; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 82 | struct tvec_base boot_tvec_bases; | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 83 | EXPORT_SYMBOL(boot_tvec_bases); | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 84 | static DEFINE_PER_CPU(struct tvec_base *, tvec_bases) = &boot_tvec_bases; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 86 | /* | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 87 | * Note that all tvec_bases are 2 byte aligned and lower bit of | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 88 | * base in timer_list is guaranteed to be zero. Use the LSB for | 
|  | 89 | * the new flag to indicate whether the timer is deferrable | 
|  | 90 | */ | 
|  | 91 | #define TBASE_DEFERRABLE_FLAG		(0x1) | 
|  | 92 |  | 
|  | 93 | /* Functions below help us manage 'deferrable' flag */ | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 94 | static inline unsigned int tbase_get_deferrable(struct tvec_base *base) | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 95 | { | 
| akpm@linux-foundation.org | e991084 | 2007-05-10 03:16:01 -0700 | [diff] [blame] | 96 | return ((unsigned int)(unsigned long)base & TBASE_DEFERRABLE_FLAG); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 97 | } | 
|  | 98 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 99 | static inline struct tvec_base *tbase_get_base(struct tvec_base *base) | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 100 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 101 | return ((struct tvec_base *)((unsigned long)base & ~TBASE_DEFERRABLE_FLAG)); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 102 | } | 
|  | 103 |  | 
|  | 104 | static inline void timer_set_deferrable(struct timer_list *timer) | 
|  | 105 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 106 | timer->base = ((struct tvec_base *)((unsigned long)(timer->base) | | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 107 | TBASE_DEFERRABLE_FLAG)); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 108 | } | 
|  | 109 |  | 
|  | 110 | static inline void | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 111 | timer_set_base(struct timer_list *timer, struct tvec_base *new_base) | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 112 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 113 | timer->base = (struct tvec_base *)((unsigned long)(new_base) | | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 114 | tbase_get_deferrable(timer->base)); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 115 | } | 
|  | 116 |  | 
| Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 117 | static 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 | * We don't want all cpus firing their timers at once hitting the | 
|  | 125 | * same lock or cachelines, so we skew each extra cpu with an extra | 
|  | 126 | * 3 jiffies. This 3 jiffies came originally from the mm/ code which | 
|  | 127 | * already did this. | 
|  | 128 | * The skew is done by adding 3*cpunr, then round, then subtract this | 
|  | 129 | * extra offset again. | 
|  | 130 | */ | 
|  | 131 | j += cpu * 3; | 
|  | 132 |  | 
|  | 133 | rem = j % HZ; | 
|  | 134 |  | 
|  | 135 | /* | 
|  | 136 | * If the target jiffie is just after a whole second (which can happen | 
|  | 137 | * due to delays of the timer irq, long irq off times etc etc) then | 
|  | 138 | * we should round down to the whole second, not up. Use 1/4th second | 
|  | 139 | * as cutoff for this rounding as an extreme upper bound for this. | 
|  | 140 | * But never round down if @force_up is set. | 
|  | 141 | */ | 
|  | 142 | if (rem < HZ/4 && !force_up) /* round down */ | 
|  | 143 | j = j - rem; | 
|  | 144 | else /* round up */ | 
|  | 145 | j = j - rem + HZ; | 
|  | 146 |  | 
|  | 147 | /* now that we have rounded, subtract the extra skew again */ | 
|  | 148 | j -= cpu * 3; | 
|  | 149 |  | 
|  | 150 | if (j <= jiffies) /* rounding ate our timeout entirely; */ | 
|  | 151 | return original; | 
|  | 152 | return j; | 
|  | 153 | } | 
|  | 154 |  | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 155 | /** | 
|  | 156 | * __round_jiffies - function to round jiffies to a full second | 
|  | 157 | * @j: the time in (absolute) jiffies that should be rounded | 
|  | 158 | * @cpu: the processor number on which the timeout will happen | 
|  | 159 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 160 | * __round_jiffies() rounds an absolute time in the future (in jiffies) | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 161 | * up or down to (approximately) full seconds. This is useful for timers | 
|  | 162 | * for which the exact time they fire does not matter too much, as long as | 
|  | 163 | * they fire approximately every X seconds. | 
|  | 164 | * | 
|  | 165 | * By rounding these timers to whole seconds, all such timers will fire | 
|  | 166 | * at the same time, rather than at various times spread out. The goal | 
|  | 167 | * of this is to have the CPU wake up less, which saves power. | 
|  | 168 | * | 
|  | 169 | * The exact rounding is skewed for each processor to avoid all | 
|  | 170 | * processors firing at the exact same time, which could lead | 
|  | 171 | * to lock contention or spurious cache line bouncing. | 
|  | 172 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 173 | * The return value is the rounded version of the @j parameter. | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 174 | */ | 
|  | 175 | unsigned long __round_jiffies(unsigned long j, int cpu) | 
|  | 176 | { | 
| Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 177 | return round_jiffies_common(j, cpu, false); | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 178 | } | 
|  | 179 | EXPORT_SYMBOL_GPL(__round_jiffies); | 
|  | 180 |  | 
|  | 181 | /** | 
|  | 182 | * __round_jiffies_relative - function to round jiffies to a full second | 
|  | 183 | * @j: the time in (relative) jiffies that should be rounded | 
|  | 184 | * @cpu: the processor number on which the timeout will happen | 
|  | 185 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 186 | * __round_jiffies_relative() rounds a time delta  in the future (in jiffies) | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 187 | * up or down to (approximately) full seconds. This is useful for timers | 
|  | 188 | * for which the exact time they fire does not matter too much, as long as | 
|  | 189 | * they fire approximately every X seconds. | 
|  | 190 | * | 
|  | 191 | * By rounding these timers to whole seconds, all such timers will fire | 
|  | 192 | * at the same time, rather than at various times spread out. The goal | 
|  | 193 | * of this is to have the CPU wake up less, which saves power. | 
|  | 194 | * | 
|  | 195 | * The exact rounding is skewed for each processor to avoid all | 
|  | 196 | * processors firing at the exact same time, which could lead | 
|  | 197 | * to lock contention or spurious cache line bouncing. | 
|  | 198 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 199 | * The return value is the rounded version of the @j parameter. | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 200 | */ | 
|  | 201 | unsigned long __round_jiffies_relative(unsigned long j, int cpu) | 
|  | 202 | { | 
| Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 203 | unsigned long j0 = jiffies; | 
|  | 204 |  | 
|  | 205 | /* Use j0 because jiffies might change while we run */ | 
|  | 206 | return round_jiffies_common(j + j0, cpu, false) - j0; | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 207 | } | 
|  | 208 | EXPORT_SYMBOL_GPL(__round_jiffies_relative); | 
|  | 209 |  | 
|  | 210 | /** | 
|  | 211 | * round_jiffies - function to round jiffies to a full second | 
|  | 212 | * @j: the time in (absolute) jiffies that should be rounded | 
|  | 213 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 214 | * round_jiffies() rounds an absolute time in the future (in jiffies) | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 215 | * up or down to (approximately) full seconds. This is useful for timers | 
|  | 216 | * for which the exact time they fire does not matter too much, as long as | 
|  | 217 | * they fire approximately every X seconds. | 
|  | 218 | * | 
|  | 219 | * By rounding these timers to whole seconds, all such timers will fire | 
|  | 220 | * at the same time, rather than at various times spread out. The goal | 
|  | 221 | * of this is to have the CPU wake up less, which saves power. | 
|  | 222 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 223 | * The return value is the rounded version of the @j parameter. | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 224 | */ | 
|  | 225 | unsigned long round_jiffies(unsigned long j) | 
|  | 226 | { | 
| Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 227 | return round_jiffies_common(j, raw_smp_processor_id(), false); | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 228 | } | 
|  | 229 | EXPORT_SYMBOL_GPL(round_jiffies); | 
|  | 230 |  | 
|  | 231 | /** | 
|  | 232 | * round_jiffies_relative - function to round jiffies to a full second | 
|  | 233 | * @j: the time in (relative) jiffies that should be rounded | 
|  | 234 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 235 | * round_jiffies_relative() rounds a time delta  in the future (in jiffies) | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 236 | * up or down to (approximately) full seconds. This is useful for timers | 
|  | 237 | * for which the exact time they fire does not matter too much, as long as | 
|  | 238 | * they fire approximately every X seconds. | 
|  | 239 | * | 
|  | 240 | * By rounding these timers to whole seconds, all such timers will fire | 
|  | 241 | * at the same time, rather than at various times spread out. The goal | 
|  | 242 | * of this is to have the CPU wake up less, which saves power. | 
|  | 243 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 244 | * The return value is the rounded version of the @j parameter. | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 245 | */ | 
|  | 246 | unsigned long round_jiffies_relative(unsigned long j) | 
|  | 247 | { | 
|  | 248 | return __round_jiffies_relative(j, raw_smp_processor_id()); | 
|  | 249 | } | 
|  | 250 | EXPORT_SYMBOL_GPL(round_jiffies_relative); | 
|  | 251 |  | 
| Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 252 | /** | 
|  | 253 | * __round_jiffies_up - function to round jiffies up to a full second | 
|  | 254 | * @j: the time in (absolute) jiffies that should be rounded | 
|  | 255 | * @cpu: the processor number on which the timeout will happen | 
|  | 256 | * | 
|  | 257 | * This is the same as __round_jiffies() except that it will never | 
|  | 258 | * round down.  This is useful for timeouts for which the exact time | 
|  | 259 | * of firing does not matter too much, as long as they don't fire too | 
|  | 260 | * early. | 
|  | 261 | */ | 
|  | 262 | unsigned long __round_jiffies_up(unsigned long j, int cpu) | 
|  | 263 | { | 
|  | 264 | return round_jiffies_common(j, cpu, true); | 
|  | 265 | } | 
|  | 266 | EXPORT_SYMBOL_GPL(__round_jiffies_up); | 
|  | 267 |  | 
|  | 268 | /** | 
|  | 269 | * __round_jiffies_up_relative - function to round jiffies up to a full second | 
|  | 270 | * @j: the time in (relative) jiffies that should be rounded | 
|  | 271 | * @cpu: the processor number on which the timeout will happen | 
|  | 272 | * | 
|  | 273 | * This is the same as __round_jiffies_relative() except that it will never | 
|  | 274 | * round down.  This is useful for timeouts for which the exact time | 
|  | 275 | * of firing does not matter too much, as long as they don't fire too | 
|  | 276 | * early. | 
|  | 277 | */ | 
|  | 278 | unsigned long __round_jiffies_up_relative(unsigned long j, int cpu) | 
|  | 279 | { | 
|  | 280 | unsigned long j0 = jiffies; | 
|  | 281 |  | 
|  | 282 | /* Use j0 because jiffies might change while we run */ | 
|  | 283 | return round_jiffies_common(j + j0, cpu, true) - j0; | 
|  | 284 | } | 
|  | 285 | EXPORT_SYMBOL_GPL(__round_jiffies_up_relative); | 
|  | 286 |  | 
|  | 287 | /** | 
|  | 288 | * round_jiffies_up - function to round jiffies up to a full second | 
|  | 289 | * @j: the time in (absolute) jiffies that should be rounded | 
|  | 290 | * | 
|  | 291 | * This is the same as round_jiffies() except that it will never | 
|  | 292 | * round down.  This is useful for timeouts for which the exact time | 
|  | 293 | * of firing does not matter too much, as long as they don't fire too | 
|  | 294 | * early. | 
|  | 295 | */ | 
|  | 296 | unsigned long round_jiffies_up(unsigned long j) | 
|  | 297 | { | 
|  | 298 | return round_jiffies_common(j, raw_smp_processor_id(), true); | 
|  | 299 | } | 
|  | 300 | EXPORT_SYMBOL_GPL(round_jiffies_up); | 
|  | 301 |  | 
|  | 302 | /** | 
|  | 303 | * round_jiffies_up_relative - function to round jiffies up to a full second | 
|  | 304 | * @j: the time in (relative) jiffies that should be rounded | 
|  | 305 | * | 
|  | 306 | * This is the same as round_jiffies_relative() except that it will never | 
|  | 307 | * round down.  This is useful for timeouts for which the exact time | 
|  | 308 | * of firing does not matter too much, as long as they don't fire too | 
|  | 309 | * early. | 
|  | 310 | */ | 
|  | 311 | unsigned long round_jiffies_up_relative(unsigned long j) | 
|  | 312 | { | 
|  | 313 | return __round_jiffies_up_relative(j, raw_smp_processor_id()); | 
|  | 314 | } | 
|  | 315 | EXPORT_SYMBOL_GPL(round_jiffies_up_relative); | 
|  | 316 |  | 
| Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 317 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 318 | static inline void set_running_timer(struct tvec_base *base, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | struct timer_list *timer) | 
|  | 320 | { | 
|  | 321 | #ifdef CONFIG_SMP | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 322 | base->running_timer = timer; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | #endif | 
|  | 324 | } | 
|  | 325 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 326 | static void internal_add_timer(struct tvec_base *base, struct timer_list *timer) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * Can happen if you add a timer with expires == jiffies, | 
|  | 347 | * or you set a timer to go off in the past | 
|  | 348 | */ | 
|  | 349 | vec = base->tv1.vec + (base->timer_jiffies & TVR_MASK); | 
|  | 350 | } else { | 
|  | 351 | int i; | 
|  | 352 | /* If the timeout is larger than 0xffffffff on 64-bit | 
|  | 353 | * architectures then we use the maximum timeout: | 
|  | 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 | * Timers are FIFO: | 
|  | 364 | */ | 
|  | 365 | list_add_tail(&timer->entry, vec); | 
|  | 366 | } | 
|  | 367 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 368 | #ifdef CONFIG_TIMER_STATS | 
|  | 369 | void __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 | } | 
| Venki Pallipadi | c5c061b8 | 2007-07-15 23:40:30 -0700 | [diff] [blame] | 378 |  | 
|  | 379 | static void timer_stats_account_timer(struct timer_list *timer) | 
|  | 380 | { | 
|  | 381 | unsigned int flag = 0; | 
|  | 382 |  | 
| Heiko Carstens | 507e123 | 2009-06-23 17:38:15 +0200 | [diff] [blame] | 383 | if (likely(!timer->start_site)) | 
|  | 384 | return; | 
| Venki Pallipadi | c5c061b8 | 2007-07-15 23:40:30 -0700 | [diff] [blame] | 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 | 
|  | 393 | static void timer_stats_account_timer(struct timer_list *timer) {} | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 394 | #endif | 
|  | 395 |  | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 396 | #ifdef CONFIG_DEBUG_OBJECTS_TIMERS | 
|  | 397 |  | 
|  | 398 | static struct debug_obj_descr timer_debug_descr; | 
|  | 399 |  | 
|  | 400 | /* | 
|  | 401 | * fixup_init is called when: | 
|  | 402 | * - an active object is initialized | 
|  | 403 | */ | 
|  | 404 | static 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 | * fixup_activate is called when: | 
|  | 420 | * - an active object is activated | 
|  | 421 | * - an unknown object is activated (might be a statically initialized object) | 
|  | 422 | */ | 
|  | 423 | static 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 | * This is not really a fixup. The timer was | 
|  | 432 | * statically initialized. We just make sure that it | 
|  | 433 | * is tracked in the object tracker. | 
|  | 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 | * fixup_free is called when: | 
|  | 455 | * - an active object is freed | 
|  | 456 | */ | 
|  | 457 | static 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 |  | 
|  | 471 | static 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 |  | 
|  | 478 | static inline void debug_timer_init(struct timer_list *timer) | 
|  | 479 | { | 
|  | 480 | debug_object_init(timer, &timer_debug_descr); | 
|  | 481 | } | 
|  | 482 |  | 
|  | 483 | static inline void debug_timer_activate(struct timer_list *timer) | 
|  | 484 | { | 
|  | 485 | debug_object_activate(timer, &timer_debug_descr); | 
|  | 486 | } | 
|  | 487 |  | 
|  | 488 | static inline void debug_timer_deactivate(struct timer_list *timer) | 
|  | 489 | { | 
|  | 490 | debug_object_deactivate(timer, &timer_debug_descr); | 
|  | 491 | } | 
|  | 492 |  | 
|  | 493 | static inline void debug_timer_free(struct timer_list *timer) | 
|  | 494 | { | 
|  | 495 | debug_object_free(timer, &timer_debug_descr); | 
|  | 496 | } | 
|  | 497 |  | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 498 | static void __init_timer(struct timer_list *timer, | 
|  | 499 | const char *name, | 
|  | 500 | struct lock_class_key *key); | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 501 |  | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 502 | void init_timer_on_stack_key(struct timer_list *timer, | 
|  | 503 | const char *name, | 
|  | 504 | struct lock_class_key *key) | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 505 | { | 
|  | 506 | debug_object_init_on_stack(timer, &timer_debug_descr); | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 507 | __init_timer(timer, name, key); | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 508 | } | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 509 | EXPORT_SYMBOL_GPL(init_timer_on_stack_key); | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 510 |  | 
|  | 511 | void destroy_timer_on_stack(struct timer_list *timer) | 
|  | 512 | { | 
|  | 513 | debug_object_free(timer, &timer_debug_descr); | 
|  | 514 | } | 
|  | 515 | EXPORT_SYMBOL_GPL(destroy_timer_on_stack); | 
|  | 516 |  | 
|  | 517 | #else | 
|  | 518 | static inline void debug_timer_init(struct timer_list *timer) { } | 
|  | 519 | static inline void debug_timer_activate(struct timer_list *timer) { } | 
|  | 520 | static inline void debug_timer_deactivate(struct timer_list *timer) { } | 
|  | 521 | #endif | 
|  | 522 |  | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 523 | static void __init_timer(struct timer_list *timer, | 
|  | 524 | const char *name, | 
|  | 525 | struct lock_class_key *key) | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 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 | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 534 | lockdep_init_map(&timer->lockdep_map, name, key, 0); | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 535 | } | 
|  | 536 |  | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 537 | /** | 
| Randy Dunlap | 633fe79 | 2009-04-01 17:47:23 -0700 | [diff] [blame] | 538 | * init_timer_key - initialize a timer | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 539 | * @timer: the timer to be initialized | 
| Randy Dunlap | 633fe79 | 2009-04-01 17:47:23 -0700 | [diff] [blame] | 540 | * @name: name of the timer | 
|  | 541 | * @key: lockdep class key of the fake lock used for tracking timer | 
|  | 542 | *       sync lock dependencies | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 543 | * | 
| Randy Dunlap | 633fe79 | 2009-04-01 17:47:23 -0700 | [diff] [blame] | 544 | * init_timer_key() must be done to a timer prior calling *any* of the | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 545 | * other timer functions. | 
|  | 546 | */ | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 547 | void init_timer_key(struct timer_list *timer, | 
|  | 548 | const char *name, | 
|  | 549 | struct lock_class_key *key) | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 550 | { | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 551 | debug_timer_init(timer); | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 552 | __init_timer(timer, name, key); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 553 | } | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 554 | EXPORT_SYMBOL(init_timer_key); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 555 |  | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 556 | void init_timer_deferrable_key(struct timer_list *timer, | 
|  | 557 | const char *name, | 
|  | 558 | struct lock_class_key *key) | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 559 | { | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 560 | init_timer_key(timer, name, key); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 561 | timer_set_deferrable(timer); | 
|  | 562 | } | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 563 | EXPORT_SYMBOL(init_timer_deferrable_key); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 564 |  | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 565 | static inline void detach_timer(struct timer_list *timer, | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 566 | int clear_pending) | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 567 | { | 
|  | 568 | struct list_head *entry = &timer->entry; | 
|  | 569 |  | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 570 | debug_timer_deactivate(timer); | 
|  | 571 |  | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 572 | __list_del(entry->prev, entry->next); | 
|  | 573 | if (clear_pending) | 
|  | 574 | entry->next = NULL; | 
|  | 575 | entry->prev = LIST_POISON2; | 
|  | 576 | } | 
|  | 577 |  | 
|  | 578 | /* | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 579 | * We are using hashed locking: holding per_cpu(tvec_bases).lock | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 580 | * means that all timers which are tied to this base via timer->base are | 
|  | 581 | * locked, and the base itself is locked too. | 
|  | 582 | * | 
|  | 583 | * So __run_timers/migrate_timers can safely modify all timers which could | 
|  | 584 | * be found on ->tvX lists. | 
|  | 585 | * | 
|  | 586 | * When the timer's base is locked, and the timer removed from list, it is | 
|  | 587 | * possible to set timer->base = NULL and drop the lock: the timer remains | 
|  | 588 | * locked. | 
|  | 589 | */ | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 590 | static struct tvec_base *lock_timer_base(struct timer_list *timer, | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 591 | unsigned long *flags) | 
| Josh Triplett | 89e7e374 | 2006-09-29 01:59:36 -0700 | [diff] [blame] | 592 | __acquires(timer->base->lock) | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 593 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 594 | struct tvec_base *base; | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 595 |  | 
|  | 596 | for (;;) { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 597 | struct tvec_base *prelock_base = timer->base; | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 598 | base = tbase_get_base(prelock_base); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 599 | if (likely(base != NULL)) { | 
|  | 600 | spin_lock_irqsave(&base->lock, *flags); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 601 | if (likely(prelock_base == timer->base)) | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 602 | return base; | 
|  | 603 | /* The timer has migrated to another CPU */ | 
|  | 604 | spin_unlock_irqrestore(&base->lock, *flags); | 
|  | 605 | } | 
|  | 606 | cpu_relax(); | 
|  | 607 | } | 
|  | 608 | } | 
|  | 609 |  | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 610 | static inline int | 
| Arun R Bharadwaj | 597d027 | 2009-04-16 12:13:26 +0530 | [diff] [blame] | 611 | __mod_timer(struct timer_list *timer, unsigned long expires, | 
|  | 612 | bool pending_only, int pinned) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 614 | struct tvec_base *base, *new_base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | unsigned long flags; | 
| Arun R Bharadwaj | eea08f3 | 2009-04-16 12:16:41 +0530 | [diff] [blame] | 616 | int ret = 0 , cpu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 618 | timer_stats_timer_set_start_info(timer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | BUG_ON(!timer->function); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 |  | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 621 | base = lock_timer_base(timer, &flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 |  | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 623 | if (timer_pending(timer)) { | 
|  | 624 | detach_timer(timer, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | ret = 1; | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 626 | } else { | 
|  | 627 | if (pending_only) | 
|  | 628 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | } | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 630 |  | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 631 | debug_timer_activate(timer); | 
|  | 632 |  | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 633 | new_base = __get_cpu_var(tvec_bases); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 634 |  | 
| Arun R Bharadwaj | eea08f3 | 2009-04-16 12:16:41 +0530 | [diff] [blame] | 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 |  | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 647 | if (base != new_base) { | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 648 | /* | 
|  | 649 | * We are trying to schedule the timer on the local CPU. | 
|  | 650 | * However we can't change timer's base while it is running, | 
|  | 651 | * otherwise del_timer_sync() can't detect that the timer's | 
|  | 652 | * handler yet has not finished. This also guarantees that | 
|  | 653 | * the timer is serialized wrt itself. | 
|  | 654 | */ | 
| Oleg Nesterov | a2c348f | 2006-03-31 02:30:31 -0800 | [diff] [blame] | 655 | if (likely(base->running_timer != timer)) { | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 656 | /* See the comment in lock_timer_base() */ | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 657 | timer_set_base(timer, NULL); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 658 | spin_unlock(&base->lock); | 
| Oleg Nesterov | a2c348f | 2006-03-31 02:30:31 -0800 | [diff] [blame] | 659 | base = new_base; | 
|  | 660 | spin_lock(&base->lock); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 661 | timer_set_base(timer, base); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 662 | } | 
|  | 663 | } | 
|  | 664 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | timer->expires = expires; | 
| Oleg Nesterov | a2c348f | 2006-03-31 02:30:31 -0800 | [diff] [blame] | 666 | internal_add_timer(base, timer); | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 667 |  | 
|  | 668 | out_unlock: | 
| Oleg Nesterov | a2c348f | 2006-03-31 02:30:31 -0800 | [diff] [blame] | 669 | spin_unlock_irqrestore(&base->lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 |  | 
|  | 671 | return ret; | 
|  | 672 | } | 
|  | 673 |  | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 674 | /** | 
|  | 675 | * mod_timer_pending - modify a pending timer's timeout | 
|  | 676 | * @timer: the pending timer to be modified | 
|  | 677 | * @expires: new timeout in jiffies | 
|  | 678 | * | 
|  | 679 | * mod_timer_pending() is the same for pending timers as mod_timer(), | 
|  | 680 | * but will not re-activate and modify already deleted timers. | 
|  | 681 | * | 
|  | 682 | * It is useful for unserialized use of timers. | 
|  | 683 | */ | 
|  | 684 | int mod_timer_pending(struct timer_list *timer, unsigned long expires) | 
|  | 685 | { | 
| Arun R Bharadwaj | 597d027 | 2009-04-16 12:13:26 +0530 | [diff] [blame] | 686 | return __mod_timer(timer, expires, true, TIMER_NOT_PINNED); | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 687 | } | 
|  | 688 | EXPORT_SYMBOL(mod_timer_pending); | 
|  | 689 |  | 
|  | 690 | /** | 
|  | 691 | * mod_timer - modify a timer's timeout | 
|  | 692 | * @timer: the timer to be modified | 
|  | 693 | * @expires: new timeout in jiffies | 
|  | 694 | * | 
|  | 695 | * mod_timer() is a more efficient way to update the expire field of an | 
|  | 696 | * active timer (if the timer is inactive it will be activated) | 
|  | 697 | * | 
|  | 698 | * mod_timer(timer, expires) is equivalent to: | 
|  | 699 | * | 
|  | 700 | *     del_timer(timer); timer->expires = expires; add_timer(timer); | 
|  | 701 | * | 
|  | 702 | * Note that if there are multiple unserialized concurrent users of the | 
|  | 703 | * same timer, then mod_timer() is the only safe way to modify the timeout, | 
|  | 704 | * since add_timer() cannot modify an already running timer. | 
|  | 705 | * | 
|  | 706 | * The function returns whether it has modified a pending timer or not. | 
|  | 707 | * (ie. mod_timer() of an inactive timer returns 0, mod_timer() of an | 
|  | 708 | * active timer returns 1.) | 
|  | 709 | */ | 
|  | 710 | int mod_timer(struct timer_list *timer, unsigned long expires) | 
|  | 711 | { | 
|  | 712 | /* | 
|  | 713 | * This is a common optimization triggered by the | 
|  | 714 | * networking code - if the timer is re-modified | 
|  | 715 | * to be the same thing then just return: | 
|  | 716 | */ | 
| Pavel Roskin | 4841158 | 2009-07-18 16:46:02 -0400 | [diff] [blame] | 717 | if (timer_pending(timer) && timer->expires == expires) | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 718 | return 1; | 
|  | 719 |  | 
| Arun R Bharadwaj | 597d027 | 2009-04-16 12:13:26 +0530 | [diff] [blame] | 720 | return __mod_timer(timer, expires, false, TIMER_NOT_PINNED); | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 721 | } | 
|  | 722 | EXPORT_SYMBOL(mod_timer); | 
|  | 723 |  | 
|  | 724 | /** | 
| Arun R Bharadwaj | 597d027 | 2009-04-16 12:13:26 +0530 | [diff] [blame] | 725 | * mod_timer_pinned - modify a timer's timeout | 
|  | 726 | * @timer: the timer to be modified | 
|  | 727 | * @expires: new timeout in jiffies | 
|  | 728 | * | 
|  | 729 | * mod_timer_pinned() is a way to update the expire field of an | 
|  | 730 | * active timer (if the timer is inactive it will be activated) | 
|  | 731 | * and not allow the timer to be migrated to a different CPU. | 
|  | 732 | * | 
|  | 733 | * mod_timer_pinned(timer, expires) is equivalent to: | 
|  | 734 | * | 
|  | 735 | *     del_timer(timer); timer->expires = expires; add_timer(timer); | 
|  | 736 | */ | 
|  | 737 | int 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 | } | 
|  | 744 | EXPORT_SYMBOL(mod_timer_pinned); | 
|  | 745 |  | 
|  | 746 | /** | 
| Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 747 | * add_timer - start a timer | 
|  | 748 | * @timer: the timer to be added | 
|  | 749 | * | 
|  | 750 | * The kernel will do a ->function(->data) callback from the | 
|  | 751 | * timer interrupt at the ->expires point in the future. The | 
|  | 752 | * current time is 'jiffies'. | 
|  | 753 | * | 
|  | 754 | * The timer's ->expires, ->function (and if the handler uses it, ->data) | 
|  | 755 | * fields must be set prior calling this function. | 
|  | 756 | * | 
|  | 757 | * Timers with an ->expires field in the past will be executed in the next | 
|  | 758 | * timer tick. | 
|  | 759 | */ | 
|  | 760 | void add_timer(struct timer_list *timer) | 
|  | 761 | { | 
|  | 762 | BUG_ON(timer_pending(timer)); | 
|  | 763 | mod_timer(timer, timer->expires); | 
|  | 764 | } | 
|  | 765 | EXPORT_SYMBOL(add_timer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 |  | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 767 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | * add_timer_on - start a timer on a particular CPU | 
|  | 769 | * @timer: the timer to be added | 
|  | 770 | * @cpu: the CPU to start it on | 
|  | 771 | * | 
|  | 772 | * This is not very scalable on SMP. Double adds are not possible. | 
|  | 773 | */ | 
|  | 774 | void add_timer_on(struct timer_list *timer, int cpu) | 
|  | 775 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 776 | struct tvec_base *base = per_cpu(tvec_bases, cpu); | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 777 | unsigned long flags; | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 778 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 779 | timer_stats_timer_set_start_info(timer); | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 780 | BUG_ON(timer_pending(timer) || !timer->function); | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 781 | spin_lock_irqsave(&base->lock, flags); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 782 | timer_set_base(timer, base); | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 783 | debug_timer_activate(timer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | internal_add_timer(base, timer); | 
| Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 785 | /* | 
|  | 786 | * Check whether the other CPU is idle and needs to be | 
|  | 787 | * triggered to reevaluate the timer wheel when nohz is | 
|  | 788 | * active. We are protected against the other CPU fiddling | 
|  | 789 | * with the timer by holding the timer base lock. This also | 
|  | 790 | * makes sure that a CPU on the way to idle can not evaluate | 
|  | 791 | * the timer wheel. | 
|  | 792 | */ | 
|  | 793 | wake_up_idle_cpu(cpu); | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 794 | spin_unlock_irqrestore(&base->lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | } | 
| Andi Kleen | a9862e0 | 2009-05-19 22:49:07 +0200 | [diff] [blame] | 796 | EXPORT_SYMBOL_GPL(add_timer_on); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 |  | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 798 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | * del_timer - deactive a timer. | 
|  | 800 | * @timer: the timer to be deactivated | 
|  | 801 | * | 
|  | 802 | * del_timer() deactivates a timer - this works on both active and inactive | 
|  | 803 | * timers. | 
|  | 804 | * | 
|  | 805 | * The function returns whether it has deactivated a pending timer or not. | 
|  | 806 | * (ie. del_timer() of an inactive timer returns 0, del_timer() of an | 
|  | 807 | * active timer returns 1.) | 
|  | 808 | */ | 
|  | 809 | int del_timer(struct timer_list *timer) | 
|  | 810 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 811 | struct tvec_base *base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | unsigned long flags; | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 813 | int ret = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 815 | timer_stats_timer_clear_start_info(timer); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 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 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | spin_unlock_irqrestore(&base->lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 |  | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 825 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | EXPORT_SYMBOL(del_timer); | 
|  | 828 |  | 
|  | 829 | #ifdef CONFIG_SMP | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 830 | /** | 
|  | 831 | * try_to_del_timer_sync - Try to deactivate a timer | 
|  | 832 | * @timer: timer do del | 
|  | 833 | * | 
| Oleg Nesterov | fd450b7 | 2005-06-23 00:08:59 -0700 | [diff] [blame] | 834 | * This function tries to deactivate a timer. Upon successful (ret >= 0) | 
|  | 835 | * exit the timer is not queued and the handler is not running on any CPU. | 
|  | 836 | * | 
|  | 837 | * It must not be called from interrupt contexts. | 
|  | 838 | */ | 
|  | 839 | int try_to_del_timer_sync(struct timer_list *timer) | 
|  | 840 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 841 | struct tvec_base *base; | 
| Oleg Nesterov | fd450b7 | 2005-06-23 00:08:59 -0700 | [diff] [blame] | 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 | } | 
|  | 855 | out: | 
|  | 856 | spin_unlock_irqrestore(&base->lock, flags); | 
|  | 857 |  | 
|  | 858 | return ret; | 
|  | 859 | } | 
| David Howells | e19dff1 | 2007-04-26 15:46:56 -0700 | [diff] [blame] | 860 | EXPORT_SYMBOL(try_to_del_timer_sync); | 
|  | 861 |  | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 862 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | * del_timer_sync - deactivate a timer and wait for the handler to finish. | 
|  | 864 | * @timer: the timer to be deactivated | 
|  | 865 | * | 
|  | 866 | * This function only differs from del_timer() on SMP: besides deactivating | 
|  | 867 | * the timer it also makes sure the handler has finished executing on other | 
|  | 868 | * CPUs. | 
|  | 869 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 870 | * Synchronization rules: Callers must prevent restarting of the timer, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | * otherwise this function is meaningless. It must not be called from | 
|  | 872 | * interrupt contexts. The caller must not hold locks which would prevent | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 873 | * completion of the timer's handler. The timer's handler must not call | 
|  | 874 | * add_timer_on(). Upon exit the timer is not queued and the handler is | 
|  | 875 | * not running on any CPU. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | * | 
|  | 877 | * The function returns whether it has deactivated a pending timer or not. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | */ | 
|  | 879 | int del_timer_sync(struct timer_list *timer) | 
|  | 880 | { | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 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 |  | 
| Oleg Nesterov | fd450b7 | 2005-06-23 00:08:59 -0700 | [diff] [blame] | 890 | for (;;) { | 
|  | 891 | int ret = try_to_del_timer_sync(timer); | 
|  | 892 | if (ret >= 0) | 
|  | 893 | return ret; | 
| Andrew Morton | a000965 | 2006-07-14 00:24:06 -0700 | [diff] [blame] | 894 | cpu_relax(); | 
| Oleg Nesterov | fd450b7 | 2005-06-23 00:08:59 -0700 | [diff] [blame] | 895 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | } | 
|  | 897 | EXPORT_SYMBOL(del_timer_sync); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | #endif | 
|  | 899 |  | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 900 | static int cascade(struct tvec_base *base, struct tvec *tv, int index) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | { | 
|  | 902 | /* cascade all the timers from tv up one level */ | 
| Porpoise | 3439dd8 | 2006-06-23 02:05:56 -0700 | [diff] [blame] | 903 | struct timer_list *timer, *tmp; | 
|  | 904 | struct list_head tv_list; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 |  | 
| Porpoise | 3439dd8 | 2006-06-23 02:05:56 -0700 | [diff] [blame] | 906 | list_replace_init(tv->vec + index, &tv_list); | 
|  | 907 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | /* | 
| Porpoise | 3439dd8 | 2006-06-23 02:05:56 -0700 | [diff] [blame] | 909 | * We are removing _all_ timers from the list, so we | 
|  | 910 | * don't have to detach them individually. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | */ | 
| Porpoise | 3439dd8 | 2006-06-23 02:05:56 -0700 | [diff] [blame] | 912 | list_for_each_entry_safe(timer, tmp, &tv_list, entry) { | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 913 | BUG_ON(tbase_get_base(timer->base) != base); | 
| Porpoise | 3439dd8 | 2006-06-23 02:05:56 -0700 | [diff] [blame] | 914 | internal_add_timer(base, timer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 |  | 
|  | 917 | return index; | 
|  | 918 | } | 
|  | 919 |  | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 920 | #define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK) | 
|  | 921 |  | 
|  | 922 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | * __run_timers - run all expired timers (if any) on this CPU. | 
|  | 924 | * @base: the timer vector to be processed. | 
|  | 925 | * | 
|  | 926 | * This function cascades all vectors and executes all expired timer | 
|  | 927 | * vectors. | 
|  | 928 | */ | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 929 | static inline void __run_timers(struct tvec_base *base) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | { | 
|  | 931 | struct timer_list *timer; | 
|  | 932 |  | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 933 | spin_lock_irq(&base->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | while (time_after_eq(jiffies, base->timer_jiffies)) { | 
| Oleg Nesterov | 626ab0e | 2006-06-23 02:05:55 -0700 | [diff] [blame] | 935 | struct list_head work_list; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | struct list_head *head = &work_list; | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 937 | int index = base->timer_jiffies & TVR_MASK; | 
| Oleg Nesterov | 626ab0e | 2006-06-23 02:05:55 -0700 | [diff] [blame] | 938 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | /* | 
|  | 940 | * Cascade timers: | 
|  | 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)); | 
| Oleg Nesterov | 626ab0e | 2006-06-23 02:05:55 -0700 | [diff] [blame] | 947 | ++base->timer_jiffies; | 
|  | 948 | list_replace_init(base->tv1.vec + index, &work_list); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 949 | while (!list_empty(head)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | void (*fn)(unsigned long); | 
|  | 951 | unsigned long data; | 
|  | 952 |  | 
| Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 953 | timer = list_first_entry(head, struct timer_list,entry); | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 954 | fn = timer->function; | 
|  | 955 | data = timer->data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 957 | timer_stats_account_timer(timer); | 
|  | 958 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | set_running_timer(base, timer); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 960 | detach_timer(timer, 1); | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 961 |  | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 962 | spin_unlock_irq(&base->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | { | 
| Jesper Juhl | be5b4fb | 2005-06-23 00:09:09 -0700 | [diff] [blame] | 964 | int preempt_count = preempt_count(); | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 965 |  | 
|  | 966 | #ifdef CONFIG_LOCKDEP | 
|  | 967 | /* | 
|  | 968 | * It is permissible to free the timer from | 
|  | 969 | * inside the function that is called from | 
|  | 970 | * it, this we need to take into account for | 
|  | 971 | * lockdep too. To avoid bogus "held lock | 
|  | 972 | * freed" warnings as well as problems when | 
|  | 973 | * looking into timer->lockdep_map, make a | 
|  | 974 | * copy and use that here. | 
|  | 975 | */ | 
|  | 976 | struct lockdep_map lockdep_map = | 
|  | 977 | timer->lockdep_map; | 
|  | 978 | #endif | 
|  | 979 | /* | 
|  | 980 | * Couple the lock chain with the lock chain at | 
|  | 981 | * del_timer_sync() by acquiring the lock_map | 
|  | 982 | * around the fn() call here and in | 
|  | 983 | * del_timer_sync(). | 
|  | 984 | */ | 
|  | 985 | lock_map_acquire(&lockdep_map); | 
|  | 986 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | fn(data); | 
| Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 988 |  | 
|  | 989 | lock_map_release(&lockdep_map); | 
|  | 990 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | if (preempt_count != preempt_count()) { | 
| Pavel Machek | 4c9dc64 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 992 | printk(KERN_ERR "huh, entered %p " | 
| Jesper Juhl | be5b4fb | 2005-06-23 00:09:09 -0700 | [diff] [blame] | 993 | "with preempt_count %08x, exited" | 
|  | 994 | " with %08x?\n", | 
|  | 995 | fn, preempt_count, | 
|  | 996 | preempt_count()); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | BUG(); | 
|  | 998 | } | 
|  | 999 | } | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 1000 | spin_lock_irq(&base->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | } | 
|  | 1002 | } | 
|  | 1003 | set_running_timer(base, NULL); | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 1004 | spin_unlock_irq(&base->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | } | 
|  | 1006 |  | 
| Russell King | ee9c578 | 2008-04-20 13:59:33 +0100 | [diff] [blame] | 1007 | #ifdef CONFIG_NO_HZ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | /* | 
|  | 1009 | * Find out when the next timer event is due to happen. This | 
|  | 1010 | * is used on S/390 to stop all activity when a cpus is idle. | 
|  | 1011 | * This functions needs to be called disabled. | 
|  | 1012 | */ | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1013 | static unsigned long __next_timer_interrupt(struct tvec_base *base) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | { | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1015 | unsigned long timer_jiffies = base->timer_jiffies; | 
| Thomas Gleixner | eaad084 | 2007-05-29 23:47:39 +0200 | [diff] [blame] | 1016 | unsigned long expires = timer_jiffies + NEXT_TIMER_MAX_DELTA; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1017 | int index, slot, array, found = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | struct timer_list *nte; | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1019 | struct tvec *varray[4]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 |  | 
|  | 1021 | /* Look for timer events in tv1. */ | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1022 | index = slot = timer_jiffies & TVR_MASK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | do { | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1024 | list_for_each_entry(nte, base->tv1.vec + slot, entry) { | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 1025 | if (tbase_get_deferrable(nte->base)) | 
|  | 1026 | continue; | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 1027 |  | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1028 | found = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | expires = nte->expires; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1030 | /* Look at the cascade bucket(s)? */ | 
|  | 1031 | if (!index || slot < index) | 
|  | 1032 | goto cascade; | 
|  | 1033 | return expires; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | } | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1035 | slot = (slot + 1) & TVR_MASK; | 
|  | 1036 | } while (slot != index); | 
|  | 1037 |  | 
|  | 1038 | cascade: | 
|  | 1039 | /* Calculate the next cascade event */ | 
|  | 1040 | if (index) | 
|  | 1041 | timer_jiffies += TVR_SIZE - index; | 
|  | 1042 | timer_jiffies >>= TVR_BITS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 |  | 
|  | 1044 | /* Check tv2-tv5. */ | 
|  | 1045 | varray[0] = &base->tv2; | 
|  | 1046 | varray[1] = &base->tv3; | 
|  | 1047 | varray[2] = &base->tv4; | 
|  | 1048 | varray[3] = &base->tv5; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1049 |  | 
|  | 1050 | for (array = 0; array < 4; array++) { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1051 | struct tvec *varp = varray[array]; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1052 |  | 
|  | 1053 | index = slot = timer_jiffies & TVN_MASK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | do { | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1055 | list_for_each_entry(nte, varp->vec + slot, entry) { | 
| Jon Hunter | a041988 | 2009-05-01 13:10:23 -0700 | [diff] [blame] | 1056 | if (tbase_get_deferrable(nte->base)) | 
|  | 1057 | continue; | 
|  | 1058 |  | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1059 | found = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | if (time_before(nte->expires, expires)) | 
|  | 1061 | expires = nte->expires; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1062 | } | 
|  | 1063 | /* | 
|  | 1064 | * Do we still search for the first timer or are | 
|  | 1065 | * we looking up the cascade buckets ? | 
|  | 1066 | */ | 
|  | 1067 | if (found) { | 
|  | 1068 | /* Look at the cascade bucket(s)? */ | 
|  | 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; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | } | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1080 | return expires; | 
|  | 1081 | } | 
|  | 1082 |  | 
|  | 1083 | /* | 
|  | 1084 | * Check, if the next hrtimer event is before the next timer wheel | 
|  | 1085 | * event: | 
|  | 1086 | */ | 
|  | 1087 | static 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; | 
| Thomas Gleixner | 9501b6c | 2007-03-25 14:31:17 +0200 | [diff] [blame] | 1092 | unsigned long delta; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1093 |  | 
|  | 1094 | if (hr_delta.tv64 == KTIME_MAX) | 
|  | 1095 | return expires; | 
|  | 1096 |  | 
| Thomas Gleixner | 9501b6c | 2007-03-25 14:31:17 +0200 | [diff] [blame] | 1097 | /* | 
|  | 1098 | * Expired timer available, let it expire in the next tick | 
|  | 1099 | */ | 
|  | 1100 | if (hr_delta.tv64 <= 0) | 
|  | 1101 | return now + 1; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1102 |  | 
|  | 1103 | tsdelta = ktime_to_timespec(hr_delta); | 
| Thomas Gleixner | 9501b6c | 2007-03-25 14:31:17 +0200 | [diff] [blame] | 1104 | delta = timespec_to_jiffies(&tsdelta); | 
| Thomas Gleixner | eaad084 | 2007-05-29 23:47:39 +0200 | [diff] [blame] | 1105 |  | 
|  | 1106 | /* | 
|  | 1107 | * Limit the delta to the max value, which is checked in | 
|  | 1108 | * tick_nohz_stop_sched_tick(): | 
|  | 1109 | */ | 
|  | 1110 | if (delta > NEXT_TIMER_MAX_DELTA) | 
|  | 1111 | delta = NEXT_TIMER_MAX_DELTA; | 
|  | 1112 |  | 
| Thomas Gleixner | 9501b6c | 2007-03-25 14:31:17 +0200 | [diff] [blame] | 1113 | /* | 
|  | 1114 | * Take rounding errors in to account and make sure, that it | 
|  | 1115 | * expires in the next tick. Otherwise we go into an endless | 
|  | 1116 | * ping pong due to tick_nohz_stop_sched_tick() retriggering | 
|  | 1117 | * the timer softirq | 
|  | 1118 | */ | 
|  | 1119 | if (delta < 1) | 
|  | 1120 | delta = 1; | 
|  | 1121 | now += delta; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1122 | if (time_before(now, expires)) | 
|  | 1123 | return now; | 
|  | 1124 | return expires; | 
|  | 1125 | } | 
|  | 1126 |  | 
|  | 1127 | /** | 
| Li Zefan | 8dce39c | 2007-11-05 14:51:10 -0800 | [diff] [blame] | 1128 | * get_next_timer_interrupt - return the jiffy of the next pending timer | 
| Randy Dunlap | 05fb6bf | 2007-02-28 20:12:13 -0800 | [diff] [blame] | 1129 | * @now: current time (in jiffies) | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1130 | */ | 
| Thomas Gleixner | fd064b9 | 2007-02-16 01:27:47 -0800 | [diff] [blame] | 1131 | unsigned long get_next_timer_interrupt(unsigned long now) | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1132 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1133 | struct tvec_base *base = __get_cpu_var(tvec_bases); | 
| Thomas Gleixner | fd064b9 | 2007-02-16 01:27:47 -0800 | [diff] [blame] | 1134 | unsigned long expires; | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1135 |  | 
|  | 1136 | spin_lock(&base->lock); | 
|  | 1137 | expires = __next_timer_interrupt(base); | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 1138 | spin_unlock(&base->lock); | 
| Tony Lindgren | 6923974 | 2006-03-06 15:42:45 -0800 | [diff] [blame] | 1139 |  | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1140 | if (time_before_eq(expires, now)) | 
|  | 1141 | return now; | 
| Zachary Amsden | 0662b71 | 2006-05-20 15:00:24 -0700 | [diff] [blame] | 1142 |  | 
| Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1143 | return cmp_next_hrtimer_event(now, expires); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | } | 
|  | 1145 | #endif | 
|  | 1146 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | /* | 
| Daniel Walker | 5b4db0c | 2007-10-18 03:06:11 -0700 | [diff] [blame] | 1148 | * Called from the timer interrupt handler to charge one tick to the current | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | * process.  user_tick is 1 if the tick is user time, 0 for system. | 
|  | 1150 | */ | 
|  | 1151 | void update_process_times(int user_tick) | 
|  | 1152 | { | 
|  | 1153 | struct task_struct *p = current; | 
|  | 1154 | int cpu = smp_processor_id(); | 
|  | 1155 |  | 
|  | 1156 | /* Note: this timer irq context must be accounted for as well. */ | 
| Paul Mackerras | fa13a5a | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 1157 | account_process_tick(p, user_tick); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | run_local_timers(); | 
|  | 1159 | if (rcu_pending(cpu)) | 
|  | 1160 | rcu_check_callbacks(cpu, user_tick); | 
| Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1161 | printk_tick(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | scheduler_tick(); | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 1163 | run_posix_cpu_timers(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | } | 
|  | 1165 |  | 
|  | 1166 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | * This function runs timers and the timer-tq in bottom half context. | 
|  | 1168 | */ | 
|  | 1169 | static void run_timer_softirq(struct softirq_action *h) | 
|  | 1170 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1171 | struct tvec_base *base = __get_cpu_var(tvec_bases); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 |  | 
| Peter Zijlstra | 925d519 | 2009-03-30 19:07:02 +0200 | [diff] [blame] | 1173 | perf_counter_do_pending(); | 
|  | 1174 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1175 | hrtimer_run_pending(); | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 1176 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | if (time_after_eq(jiffies, base->timer_jiffies)) | 
|  | 1178 | __run_timers(base); | 
|  | 1179 | } | 
|  | 1180 |  | 
|  | 1181 | /* | 
|  | 1182 | * Called by the local, per-CPU timer interrupt on SMP. | 
|  | 1183 | */ | 
|  | 1184 | void run_local_timers(void) | 
|  | 1185 | { | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1186 | hrtimer_run_queues(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | raise_softirq(TIMER_SOFTIRQ); | 
| Ingo Molnar | 6687a97 | 2006-03-24 03:18:41 -0800 | [diff] [blame] | 1188 | softlockup_tick(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | } | 
|  | 1190 |  | 
|  | 1191 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | * The 64-bit jiffies value is not atomic - you MUST NOT read it | 
|  | 1193 | * without sampling the sequence number in xtime_lock. | 
|  | 1194 | * jiffies is defined in the linker script... | 
|  | 1195 | */ | 
|  | 1196 |  | 
| Atsushi Nemoto | 3171a03 | 2006-09-29 02:00:32 -0700 | [diff] [blame] | 1197 | void do_timer(unsigned long ticks) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | { | 
| Atsushi Nemoto | 3171a03 | 2006-09-29 02:00:32 -0700 | [diff] [blame] | 1199 | jiffies_64 += ticks; | 
| Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 1200 | update_wall_time(); | 
|  | 1201 | calc_global_load(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | } | 
|  | 1203 |  | 
|  | 1204 | #ifdef __ARCH_WANT_SYS_ALARM | 
|  | 1205 |  | 
|  | 1206 | /* | 
|  | 1207 | * For backwards compatibility?  This can be done in libc so Alpha | 
|  | 1208 | * and all newer ports shouldn't need it. | 
|  | 1209 | */ | 
| Heiko Carstens | 58fd3aa | 2009-01-14 14:14:03 +0100 | [diff] [blame] | 1210 | SYSCALL_DEFINE1(alarm, unsigned int, seconds) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | { | 
| Thomas Gleixner | c08b8a4 | 2006-03-25 03:06:33 -0800 | [diff] [blame] | 1212 | return alarm_setitimer(seconds); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | } | 
|  | 1214 |  | 
|  | 1215 | #endif | 
|  | 1216 |  | 
|  | 1217 | #ifndef __alpha__ | 
|  | 1218 |  | 
|  | 1219 | /* | 
|  | 1220 | * The Alpha uses getxpid, getxuid, and getxgid instead.  Maybe this | 
|  | 1221 | * should be moved into arch/i386 instead? | 
|  | 1222 | */ | 
|  | 1223 |  | 
|  | 1224 | /** | 
|  | 1225 | * sys_getpid - return the thread group id of the current process | 
|  | 1226 | * | 
|  | 1227 | * Note, despite the name, this returns the tgid not the pid.  The tgid and | 
|  | 1228 | * the pid are identical unless CLONE_THREAD was specified on clone() in | 
|  | 1229 | * which case the tgid is the same in all threads of the same group. | 
|  | 1230 | * | 
|  | 1231 | * This is SMP safe as current->tgid does not change. | 
|  | 1232 | */ | 
| Heiko Carstens | 58fd3aa | 2009-01-14 14:14:03 +0100 | [diff] [blame] | 1233 | SYSCALL_DEFINE0(getpid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | { | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1235 | return task_tgid_vnr(current); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | } | 
|  | 1237 |  | 
|  | 1238 | /* | 
| Kirill Korotaev | 6997a6f | 2006-08-13 23:24:23 -0700 | [diff] [blame] | 1239 | * Accessing ->real_parent is not SMP-safe, it could | 
|  | 1240 | * change from under us. However, we can use a stale | 
|  | 1241 | * value of ->real_parent under rcu_read_lock(), see | 
|  | 1242 | * release_task()->call_rcu(delayed_put_task_struct). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | */ | 
| Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1244 | SYSCALL_DEFINE0(getppid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | { | 
|  | 1246 | int pid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 |  | 
| Kirill Korotaev | 6997a6f | 2006-08-13 23:24:23 -0700 | [diff] [blame] | 1248 | rcu_read_lock(); | 
| Pavel Emelyanov | 6c5f3e7 | 2008-02-08 04:19:20 -0800 | [diff] [blame] | 1249 | pid = task_tgid_vnr(current->real_parent); | 
| Kirill Korotaev | 6997a6f | 2006-08-13 23:24:23 -0700 | [diff] [blame] | 1250 | rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | return pid; | 
|  | 1253 | } | 
|  | 1254 |  | 
| Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1255 | SYSCALL_DEFINE0(getuid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | { | 
|  | 1257 | /* Only we change this so SMP safe */ | 
| David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 1258 | return current_uid(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | } | 
|  | 1260 |  | 
| Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1261 | SYSCALL_DEFINE0(geteuid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | { | 
|  | 1263 | /* Only we change this so SMP safe */ | 
| David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 1264 | return current_euid(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | } | 
|  | 1266 |  | 
| Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1267 | SYSCALL_DEFINE0(getgid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | { | 
|  | 1269 | /* Only we change this so SMP safe */ | 
| David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 1270 | return current_gid(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | } | 
|  | 1272 |  | 
| Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1273 | SYSCALL_DEFINE0(getegid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | { | 
|  | 1275 | /* Only we change this so SMP safe */ | 
| David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 1276 | return  current_egid(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | } | 
|  | 1278 |  | 
|  | 1279 | #endif | 
|  | 1280 |  | 
|  | 1281 | static void process_timeout(unsigned long __data) | 
|  | 1282 | { | 
| Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1283 | wake_up_process((struct task_struct *)__data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | } | 
|  | 1285 |  | 
|  | 1286 | /** | 
|  | 1287 | * schedule_timeout - sleep until timeout | 
|  | 1288 | * @timeout: timeout value in jiffies | 
|  | 1289 | * | 
|  | 1290 | * Make the current task sleep until @timeout jiffies have | 
|  | 1291 | * elapsed. The routine will return immediately unless | 
|  | 1292 | * the current task state has been set (see set_current_state()). | 
|  | 1293 | * | 
|  | 1294 | * You can set the task state as follows - | 
|  | 1295 | * | 
|  | 1296 | * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to | 
|  | 1297 | * pass before the routine returns. The routine will return 0 | 
|  | 1298 | * | 
|  | 1299 | * %TASK_INTERRUPTIBLE - the routine may return early if a signal is | 
|  | 1300 | * delivered to the current task. In this case the remaining time | 
|  | 1301 | * in jiffies will be returned, or 0 if the timer expired in time | 
|  | 1302 | * | 
|  | 1303 | * The current task state is guaranteed to be TASK_RUNNING when this | 
|  | 1304 | * routine returns. | 
|  | 1305 | * | 
|  | 1306 | * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule | 
|  | 1307 | * the CPU away without a bound on the timeout. In this case the return | 
|  | 1308 | * value will be %MAX_SCHEDULE_TIMEOUT. | 
|  | 1309 | * | 
|  | 1310 | * In all cases the return value is guaranteed to be non-negative. | 
|  | 1311 | */ | 
| Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1312 | signed long __sched schedule_timeout(signed long timeout) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | { | 
|  | 1314 | struct timer_list timer; | 
|  | 1315 | unsigned long expire; | 
|  | 1316 |  | 
|  | 1317 | switch (timeout) | 
|  | 1318 | { | 
|  | 1319 | case MAX_SCHEDULE_TIMEOUT: | 
|  | 1320 | /* | 
|  | 1321 | * These two special cases are useful to be comfortable | 
|  | 1322 | * in the caller. Nothing more. We could take | 
|  | 1323 | * MAX_SCHEDULE_TIMEOUT from one of the negative value | 
|  | 1324 | * but I' d like to return a valid offset (>=0) to allow | 
|  | 1325 | * the caller to do everything it want with the retval. | 
|  | 1326 | */ | 
|  | 1327 | schedule(); | 
|  | 1328 | goto out; | 
|  | 1329 | default: | 
|  | 1330 | /* | 
|  | 1331 | * Another bit of PARANOID. Note that the retval will be | 
|  | 1332 | * 0 since no piece of kernel is supposed to do a check | 
|  | 1333 | * for a negative retval of schedule_timeout() (since it | 
|  | 1334 | * should never happens anyway). You just have the printk() | 
|  | 1335 | * that will tell you if something is gone wrong and where. | 
|  | 1336 | */ | 
| Andrew Morton | 5b149bc | 2006-12-22 01:10:14 -0800 | [diff] [blame] | 1337 | if (timeout < 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | printk(KERN_ERR "schedule_timeout: wrong timeout " | 
| Andrew Morton | 5b149bc | 2006-12-22 01:10:14 -0800 | [diff] [blame] | 1339 | "value %lx\n", timeout); | 
|  | 1340 | dump_stack(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | current->state = TASK_RUNNING; | 
|  | 1342 | goto out; | 
|  | 1343 | } | 
|  | 1344 | } | 
|  | 1345 |  | 
|  | 1346 | expire = timeout + jiffies; | 
|  | 1347 |  | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 1348 | setup_timer_on_stack(&timer, process_timeout, (unsigned long)current); | 
| Arun R Bharadwaj | 597d027 | 2009-04-16 12:13:26 +0530 | [diff] [blame] | 1349 | __mod_timer(&timer, expire, false, TIMER_NOT_PINNED); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | schedule(); | 
|  | 1351 | del_singleshot_timer_sync(&timer); | 
|  | 1352 |  | 
| Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 1353 | /* Remove the timer from the object tracker */ | 
|  | 1354 | destroy_timer_on_stack(&timer); | 
|  | 1355 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | timeout = expire - jiffies; | 
|  | 1357 |  | 
|  | 1358 | out: | 
|  | 1359 | return timeout < 0 ? 0 : timeout; | 
|  | 1360 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | EXPORT_SYMBOL(schedule_timeout); | 
|  | 1362 |  | 
| Andrew Morton | 8a1c175 | 2005-09-13 01:25:15 -0700 | [diff] [blame] | 1363 | /* | 
|  | 1364 | * We can use __set_current_state() here because schedule_timeout() calls | 
|  | 1365 | * schedule() unconditionally. | 
|  | 1366 | */ | 
| Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 1367 | signed long __sched schedule_timeout_interruptible(signed long timeout) | 
|  | 1368 | { | 
| Andrew Morton | a5a0d52 | 2005-10-30 15:01:42 -0800 | [diff] [blame] | 1369 | __set_current_state(TASK_INTERRUPTIBLE); | 
|  | 1370 | return schedule_timeout(timeout); | 
| Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 1371 | } | 
|  | 1372 | EXPORT_SYMBOL(schedule_timeout_interruptible); | 
|  | 1373 |  | 
| Matthew Wilcox | 294d5cc | 2007-12-06 11:59:46 -0500 | [diff] [blame] | 1374 | signed long __sched schedule_timeout_killable(signed long timeout) | 
|  | 1375 | { | 
|  | 1376 | __set_current_state(TASK_KILLABLE); | 
|  | 1377 | return schedule_timeout(timeout); | 
|  | 1378 | } | 
|  | 1379 | EXPORT_SYMBOL(schedule_timeout_killable); | 
|  | 1380 |  | 
| Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 1381 | signed long __sched schedule_timeout_uninterruptible(signed long timeout) | 
|  | 1382 | { | 
| Andrew Morton | a5a0d52 | 2005-10-30 15:01:42 -0800 | [diff] [blame] | 1383 | __set_current_state(TASK_UNINTERRUPTIBLE); | 
|  | 1384 | return schedule_timeout(timeout); | 
| Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 1385 | } | 
|  | 1386 | EXPORT_SYMBOL(schedule_timeout_uninterruptible); | 
|  | 1387 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | /* Thread ID - the internal kernel "pid" */ | 
| Heiko Carstens | 58fd3aa | 2009-01-14 14:14:03 +0100 | [diff] [blame] | 1389 | SYSCALL_DEFINE0(gettid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | { | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1391 | return task_pid_vnr(current); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } | 
|  | 1393 |  | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1394 | /** | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1395 | * do_sysinfo - fill in sysinfo struct | 
| Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1396 | * @info: pointer to buffer to fill | 
| Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 1397 | */ | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1398 | int do_sysinfo(struct sysinfo *info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | unsigned long mem_total, sav_total; | 
|  | 1401 | unsigned int mem_unit, bitcount; | 
| Thomas Gleixner | 2d02494 | 2009-05-02 20:08:52 +0200 | [diff] [blame] | 1402 | struct timespec tp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 |  | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1404 | memset(info, 0, sizeof(struct sysinfo)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 |  | 
| Thomas Gleixner | 2d02494 | 2009-05-02 20:08:52 +0200 | [diff] [blame] | 1406 | ktime_get_ts(&tp); | 
|  | 1407 | monotonic_to_bootbased(&tp); | 
|  | 1408 | info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 |  | 
| Thomas Gleixner | 2d02494 | 2009-05-02 20:08:52 +0200 | [diff] [blame] | 1410 | get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 |  | 
| Thomas Gleixner | 2d02494 | 2009-05-02 20:08:52 +0200 | [diff] [blame] | 1412 | info->procs = nr_threads; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 |  | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1414 | si_meminfo(info); | 
|  | 1415 | si_swapinfo(info); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 |  | 
|  | 1417 | /* | 
|  | 1418 | * If the sum of all the available memory (i.e. ram + swap) | 
|  | 1419 | * is less than can be stored in a 32 bit unsigned long then | 
|  | 1420 | * we can be binary compatible with 2.2.x kernels.  If not, | 
|  | 1421 | * well, in that case 2.2.x was broken anyways... | 
|  | 1422 | * | 
|  | 1423 | *  -Erik Andersen <andersee@debian.org> | 
|  | 1424 | */ | 
|  | 1425 |  | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1426 | mem_total = info->totalram + info->totalswap; | 
|  | 1427 | if (mem_total < info->totalram || mem_total < info->totalswap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | goto out; | 
|  | 1429 | bitcount = 0; | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1430 | mem_unit = info->mem_unit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * If mem_total did not overflow, multiply all memory values by | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1442 | * info->mem_unit and set it to 1.  This leaves things compatible | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | * with 2.2.x, and also retains compatibility with earlier 2.4.x | 
|  | 1444 | * kernels... | 
|  | 1445 | */ | 
|  | 1446 |  | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 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; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 |  | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1457 | out: | 
|  | 1458 | return 0; | 
|  | 1459 | } | 
|  | 1460 |  | 
| Heiko Carstens | 1e7bfb2 | 2009-01-14 14:14:29 +0100 | [diff] [blame] | 1461 | SYSCALL_DEFINE1(sysinfo, struct sysinfo __user *, info) | 
| Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 1462 | { | 
|  | 1463 | struct sysinfo val; | 
|  | 1464 |  | 
|  | 1465 | do_sysinfo(&val); | 
|  | 1466 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | if (copy_to_user(info, &val, sizeof(struct sysinfo))) | 
|  | 1468 | return -EFAULT; | 
|  | 1469 |  | 
|  | 1470 | return 0; | 
|  | 1471 | } | 
|  | 1472 |  | 
| Adrian Bunk | b4be625 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 1473 | static int __cpuinit init_timers_cpu(int cpu) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | { | 
|  | 1475 | int j; | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1476 | struct tvec_base *base; | 
| Adrian Bunk | b4be625 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 1477 | static char __cpuinitdata tvec_base_done[NR_CPUS]; | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1478 |  | 
| Andrew Morton | ba6edfc | 2006-04-10 22:53:58 -0700 | [diff] [blame] | 1479 | if (!tvec_base_done[cpu]) { | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1480 | static char boot_done; | 
|  | 1481 |  | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1482 | if (boot_done) { | 
| Andrew Morton | ba6edfc | 2006-04-10 22:53:58 -0700 | [diff] [blame] | 1483 | /* | 
|  | 1484 | * The APs use this path later in boot | 
|  | 1485 | */ | 
| Christoph Lameter | 94f6030 | 2007-07-17 04:03:29 -0700 | [diff] [blame] | 1486 | base = kmalloc_node(sizeof(*base), | 
|  | 1487 | GFP_KERNEL | __GFP_ZERO, | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1488 | cpu_to_node(cpu)); | 
|  | 1489 | if (!base) | 
|  | 1490 | return -ENOMEM; | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 1491 |  | 
|  | 1492 | /* Make sure that tvec_base is 2 byte aligned */ | 
|  | 1493 | if (tbase_get_deferrable(base)) { | 
|  | 1494 | WARN_ON(1); | 
|  | 1495 | kfree(base); | 
|  | 1496 | return -ENOMEM; | 
|  | 1497 | } | 
| Andrew Morton | ba6edfc | 2006-04-10 22:53:58 -0700 | [diff] [blame] | 1498 | per_cpu(tvec_bases, cpu) = base; | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1499 | } else { | 
| Andrew Morton | ba6edfc | 2006-04-10 22:53:58 -0700 | [diff] [blame] | 1500 | /* | 
|  | 1501 | * This is for the boot CPU - we use compile-time | 
|  | 1502 | * static initialisation because per-cpu memory isn't | 
|  | 1503 | * ready yet and because the memory allocators are not | 
|  | 1504 | * initialised either. | 
|  | 1505 | */ | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1506 | boot_done = 1; | 
| Andrew Morton | ba6edfc | 2006-04-10 22:53:58 -0700 | [diff] [blame] | 1507 | base = &boot_tvec_bases; | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1508 | } | 
| Andrew Morton | ba6edfc | 2006-04-10 22:53:58 -0700 | [diff] [blame] | 1509 | tvec_base_done[cpu] = 1; | 
|  | 1510 | } else { | 
|  | 1511 | base = per_cpu(tvec_bases, cpu); | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1512 | } | 
| Andrew Morton | ba6edfc | 2006-04-10 22:53:58 -0700 | [diff] [blame] | 1513 |  | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 1514 | spin_lock_init(&base->lock); | 
| Ingo Molnar | d730e88 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 1515 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1526 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | } | 
|  | 1528 |  | 
|  | 1529 | #ifdef CONFIG_HOTPLUG_CPU | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1530 | static void migrate_timer_list(struct tvec_base *new_base, struct list_head *head) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | { | 
|  | 1532 | struct timer_list *timer; | 
|  | 1533 |  | 
|  | 1534 | while (!list_empty(head)) { | 
| Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 1535 | timer = list_first_entry(head, struct timer_list, entry); | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1536 | detach_timer(timer, 0); | 
| Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 1537 | timer_set_base(timer, new_base); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | internal_add_timer(new_base, timer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | } | 
|  | 1541 |  | 
| Randy Dunlap | 48ccf3d | 2008-01-21 17:18:25 -0800 | [diff] [blame] | 1542 | static void __cpuinit migrate_timers(int cpu) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | { | 
| Pavel Machek | a6fa8e5 | 2008-01-30 13:30:00 +0100 | [diff] [blame] | 1544 | struct tvec_base *old_base; | 
|  | 1545 | struct tvec_base *new_base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | int i; | 
|  | 1547 |  | 
|  | 1548 | BUG_ON(cpu_online(cpu)); | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1549 | old_base = per_cpu(tvec_bases, cpu); | 
|  | 1550 | new_base = get_cpu_var(tvec_bases); | 
| Oleg Nesterov | d82f0b0 | 2008-08-20 16:46:04 -0700 | [diff] [blame] | 1551 | /* | 
|  | 1552 | * The caller is globally serialized and nobody else | 
|  | 1553 | * takes two locks at once, deadlock is not possible. | 
|  | 1554 | */ | 
|  | 1555 | spin_lock_irq(&new_base->lock); | 
| Oleg Nesterov | 0d18040 | 2008-04-04 20:54:10 +0200 | [diff] [blame] | 1556 | spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 |  | 
| Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 1558 | BUG_ON(old_base->running_timer); | 
|  | 1559 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | for (i = 0; i < TVR_SIZE; i++) | 
| Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 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 |  | 
| Oleg Nesterov | 0d18040 | 2008-04-04 20:54:10 +0200 | [diff] [blame] | 1569 | spin_unlock(&old_base->lock); | 
| Oleg Nesterov | d82f0b0 | 2008-08-20 16:46:04 -0700 | [diff] [blame] | 1570 | spin_unlock_irq(&new_base->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | put_cpu_var(tvec_bases); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | } | 
|  | 1573 | #endif /* CONFIG_HOTPLUG_CPU */ | 
|  | 1574 |  | 
| Chandra Seetharaman | 8c78f30 | 2006-07-30 03:03:35 -0700 | [diff] [blame] | 1575 | static int __cpuinit timer_cpu_notify(struct notifier_block *self, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | unsigned long action, void *hcpu) | 
|  | 1577 | { | 
|  | 1578 | long cpu = (long)hcpu; | 
|  | 1579 | switch(action) { | 
|  | 1580 | case CPU_UP_PREPARE: | 
| Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1581 | case CPU_UP_PREPARE_FROZEN: | 
| Jan Beulich | a4a6198 | 2006-03-24 03:15:54 -0800 | [diff] [blame] | 1582 | if (init_timers_cpu(cpu) < 0) | 
|  | 1583 | return NOTIFY_BAD; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | break; | 
|  | 1585 | #ifdef CONFIG_HOTPLUG_CPU | 
|  | 1586 | case CPU_DEAD: | 
| Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1587 | case CPU_DEAD_FROZEN: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | migrate_timers(cpu); | 
|  | 1589 | break; | 
|  | 1590 | #endif | 
|  | 1591 | default: | 
|  | 1592 | break; | 
|  | 1593 | } | 
|  | 1594 | return NOTIFY_OK; | 
|  | 1595 | } | 
|  | 1596 |  | 
| Chandra Seetharaman | 8c78f30 | 2006-07-30 03:03:35 -0700 | [diff] [blame] | 1597 | static struct notifier_block __cpuinitdata timers_nb = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | .notifier_call	= timer_cpu_notify, | 
|  | 1599 | }; | 
|  | 1600 |  | 
|  | 1601 |  | 
|  | 1602 | void __init init_timers(void) | 
|  | 1603 | { | 
| Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 1604 | int err = timer_cpu_notify(&timers_nb, (unsigned long)CPU_UP_PREPARE, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | (void *)(long)smp_processor_id()); | 
| Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 1606 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 1607 | init_timer_stats(); | 
|  | 1608 |  | 
| Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 1609 | BUG_ON(err == NOTIFY_BAD); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | register_cpu_notifier(&timers_nb); | 
| Carlos R. Mafra | 962cf36 | 2008-05-15 11:15:37 -0300 | [diff] [blame] | 1611 | open_softirq(TIMER_SOFTIRQ, run_timer_softirq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | } | 
|  | 1613 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | /** | 
|  | 1615 | * msleep - sleep safely even with waitqueue interruptions | 
|  | 1616 | * @msecs: Time in milliseconds to sleep for | 
|  | 1617 | */ | 
|  | 1618 | void msleep(unsigned int msecs) | 
|  | 1619 | { | 
|  | 1620 | unsigned long timeout = msecs_to_jiffies(msecs) + 1; | 
|  | 1621 |  | 
| Nishanth Aravamudan | 75bcc8c | 2005-09-10 00:27:24 -0700 | [diff] [blame] | 1622 | while (timeout) | 
|  | 1623 | timeout = schedule_timeout_uninterruptible(timeout); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | } | 
|  | 1625 |  | 
|  | 1626 | EXPORT_SYMBOL(msleep); | 
|  | 1627 |  | 
|  | 1628 | /** | 
| Domen Puncer | 96ec3ef | 2005-06-25 14:58:43 -0700 | [diff] [blame] | 1629 | * msleep_interruptible - sleep waiting for signals | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | * @msecs: Time in milliseconds to sleep for | 
|  | 1631 | */ | 
|  | 1632 | unsigned long msleep_interruptible(unsigned int msecs) | 
|  | 1633 | { | 
|  | 1634 | unsigned long timeout = msecs_to_jiffies(msecs) + 1; | 
|  | 1635 |  | 
| Nishanth Aravamudan | 75bcc8c | 2005-09-10 00:27:24 -0700 | [diff] [blame] | 1636 | while (timeout && !signal_pending(current)) | 
|  | 1637 | timeout = schedule_timeout_interruptible(timeout); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | return jiffies_to_msecs(timeout); | 
|  | 1639 | } | 
|  | 1640 |  | 
|  | 1641 | EXPORT_SYMBOL(msleep_interruptible); |