timer.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. /*
  2. * linux/kernel/timer.c
  3. *
  4. * Kernel internal timers
  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. #include <linux/kernel_stat.h>
  22. #include <linux/export.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/percpu.h>
  25. #include <linux/init.h>
  26. #include <linux/mm.h>
  27. #include <linux/swap.h>
  28. #include <linux/pid_namespace.h>
  29. #include <linux/notifier.h>
  30. #include <linux/thread_info.h>
  31. #include <linux/time.h>
  32. #include <linux/jiffies.h>
  33. #include <linux/posix-timers.h>
  34. #include <linux/cpu.h>
  35. #include <linux/syscalls.h>
  36. #include <linux/delay.h>
  37. #include <linux/tick.h>
  38. #include <linux/kallsyms.h>
  39. #include <linux/irq_work.h>
  40. #include <linux/sched/signal.h>
  41. #include <linux/sched/sysctl.h>
  42. #include <linux/sched/nohz.h>
  43. #include <linux/sched/debug.h>
  44. #include <linux/slab.h>
  45. #include <linux/compat.h>
  46. #include <linux/uaccess.h>
  47. #include <asm/unistd.h>
  48. #include <asm/div64.h>
  49. #include <asm/timex.h>
  50. #include <asm/io.h>
  51. #include "tick-internal.h"
  52. #define CREATE_TRACE_POINTS
  53. #include <trace/events/timer.h>
  54. __visible u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES;
  55. EXPORT_SYMBOL(jiffies_64);
  56. /*
  57. * The timer wheel has LVL_DEPTH array levels. Each level provides an array of
  58. * LVL_SIZE buckets. Each level is driven by its own clock and therefor each
  59. * level has a different granularity.
  60. *
  61. * The level granularity is: LVL_CLK_DIV ^ lvl
  62. * The level clock frequency is: HZ / (LVL_CLK_DIV ^ level)
  63. *
  64. * The array level of a newly armed timer depends on the relative expiry
  65. * time. The farther the expiry time is away the higher the array level and
  66. * therefor the granularity becomes.
  67. *
  68. * Contrary to the original timer wheel implementation, which aims for 'exact'
  69. * expiry of the timers, this implementation removes the need for recascading
  70. * the timers into the lower array levels. The previous 'classic' timer wheel
  71. * implementation of the kernel already violated the 'exact' expiry by adding
  72. * slack to the expiry time to provide batched expiration. The granularity
  73. * levels provide implicit batching.
  74. *
  75. * This is an optimization of the original timer wheel implementation for the
  76. * majority of the timer wheel use cases: timeouts. The vast majority of
  77. * timeout timers (networking, disk I/O ...) are canceled before expiry. If
  78. * the timeout expires it indicates that normal operation is disturbed, so it
  79. * does not matter much whether the timeout comes with a slight delay.
  80. *
  81. * The only exception to this are networking timers with a small expiry
  82. * time. They rely on the granularity. Those fit into the first wheel level,
  83. * which has HZ granularity.
  84. *
  85. * We don't have cascading anymore. timers with a expiry time above the
  86. * capacity of the last wheel level are force expired at the maximum timeout
  87. * value of the last wheel level. From data sampling we know that the maximum
  88. * value observed is 5 days (network connection tracking), so this should not
  89. * be an issue.
  90. *
  91. * The currently chosen array constants values are a good compromise between
  92. * array size and granularity.
  93. *
  94. * This results in the following granularity and range levels:
  95. *
  96. * HZ 1000 steps
  97. * Level Offset Granularity Range
  98. * 0 0 1 ms 0 ms - 63 ms
  99. * 1 64 8 ms 64 ms - 511 ms
  100. * 2 128 64 ms 512 ms - 4095 ms (512ms - ~4s)
  101. * 3 192 512 ms 4096 ms - 32767 ms (~4s - ~32s)
  102. * 4 256 4096 ms (~4s) 32768 ms - 262143 ms (~32s - ~4m)
  103. * 5 320 32768 ms (~32s) 262144 ms - 2097151 ms (~4m - ~34m)
  104. * 6 384 262144 ms (~4m) 2097152 ms - 16777215 ms (~34m - ~4h)
  105. * 7 448 2097152 ms (~34m) 16777216 ms - 134217727 ms (~4h - ~1d)
  106. * 8 512 16777216 ms (~4h) 134217728 ms - 1073741822 ms (~1d - ~12d)
  107. *
  108. * HZ 300
  109. * Level Offset Granularity Range
  110. * 0 0 3 ms 0 ms - 210 ms
  111. * 1 64 26 ms 213 ms - 1703 ms (213ms - ~1s)
  112. * 2 128 213 ms 1706 ms - 13650 ms (~1s - ~13s)
  113. * 3 192 1706 ms (~1s) 13653 ms - 109223 ms (~13s - ~1m)
  114. * 4 256 13653 ms (~13s) 109226 ms - 873810 ms (~1m - ~14m)
  115. * 5 320 109226 ms (~1m) 873813 ms - 6990503 ms (~14m - ~1h)
  116. * 6 384 873813 ms (~14m) 6990506 ms - 55924050 ms (~1h - ~15h)
  117. * 7 448 6990506 ms (~1h) 55924053 ms - 447392423 ms (~15h - ~5d)
  118. * 8 512 55924053 ms (~15h) 447392426 ms - 3579139406 ms (~5d - ~41d)
  119. *
  120. * HZ 250
  121. * Level Offset Granularity Range
  122. * 0 0 4 ms 0 ms - 255 ms
  123. * 1 64 32 ms 256 ms - 2047 ms (256ms - ~2s)
  124. * 2 128 256 ms 2048 ms - 16383 ms (~2s - ~16s)
  125. * 3 192 2048 ms (~2s) 16384 ms - 131071 ms (~16s - ~2m)
  126. * 4 256 16384 ms (~16s) 131072 ms - 1048575 ms (~2m - ~17m)
  127. * 5 320 131072 ms (~2m) 1048576 ms - 8388607 ms (~17m - ~2h)
  128. * 6 384 1048576 ms (~17m) 8388608 ms - 67108863 ms (~2h - ~18h)
  129. * 7 448 8388608 ms (~2h) 67108864 ms - 536870911 ms (~18h - ~6d)
  130. * 8 512 67108864 ms (~18h) 536870912 ms - 4294967288 ms (~6d - ~49d)
  131. *
  132. * HZ 100
  133. * Level Offset Granularity Range
  134. * 0 0 10 ms 0 ms - 630 ms
  135. * 1 64 80 ms 640 ms - 5110 ms (640ms - ~5s)
  136. * 2 128 640 ms 5120 ms - 40950 ms (~5s - ~40s)
  137. * 3 192 5120 ms (~5s) 40960 ms - 327670 ms (~40s - ~5m)
  138. * 4 256 40960 ms (~40s) 327680 ms - 2621430 ms (~5m - ~43m)
  139. * 5 320 327680 ms (~5m) 2621440 ms - 20971510 ms (~43m - ~5h)
  140. * 6 384 2621440 ms (~43m) 20971520 ms - 167772150 ms (~5h - ~1d)
  141. * 7 448 20971520 ms (~5h) 167772160 ms - 1342177270 ms (~1d - ~15d)
  142. */
  143. /* Clock divisor for the next level */
  144. #define LVL_CLK_SHIFT 3
  145. #define LVL_CLK_DIV (1UL << LVL_CLK_SHIFT)
  146. #define LVL_CLK_MASK (LVL_CLK_DIV - 1)
  147. #define LVL_SHIFT(n) ((n) * LVL_CLK_SHIFT)
  148. #define LVL_GRAN(n) (1UL << LVL_SHIFT(n))
  149. /*
  150. * The time start value for each level to select the bucket at enqueue
  151. * time.
  152. */
  153. #define LVL_START(n) ((LVL_SIZE - 1) << (((n) - 1) * LVL_CLK_SHIFT))
  154. /* Size of each clock level */
  155. #define LVL_BITS 6
  156. #define LVL_SIZE (1UL << LVL_BITS)
  157. #define LVL_MASK (LVL_SIZE - 1)
  158. #define LVL_OFFS(n) ((n) * LVL_SIZE)
  159. /* Level depth */
  160. #if HZ > 100
  161. # define LVL_DEPTH 9
  162. # else
  163. # define LVL_DEPTH 8
  164. #endif
  165. /* The cutoff (max. capacity of the wheel) */
  166. #define WHEEL_TIMEOUT_CUTOFF (LVL_START(LVL_DEPTH))
  167. #define WHEEL_TIMEOUT_MAX (WHEEL_TIMEOUT_CUTOFF - LVL_GRAN(LVL_DEPTH - 1))
  168. /*
  169. * The resulting wheel size. If NOHZ is configured we allocate two
  170. * wheels so we have a separate storage for the deferrable timers.
  171. */
  172. #define WHEEL_SIZE (LVL_SIZE * LVL_DEPTH)
  173. #ifdef CONFIG_NO_HZ_COMMON
  174. # define NR_BASES 2
  175. # define BASE_STD 0
  176. # define BASE_DEF 1
  177. #else
  178. # define NR_BASES 1
  179. # define BASE_STD 0
  180. # define BASE_DEF 0
  181. #endif
  182. struct timer_base {
  183. raw_spinlock_t lock;
  184. struct timer_list *running_timer;
  185. unsigned long clk;
  186. unsigned long next_expiry;
  187. unsigned int cpu;
  188. bool migration_enabled;
  189. bool nohz_active;
  190. bool is_idle;
  191. bool must_forward_clk;
  192. DECLARE_BITMAP(pending_map, WHEEL_SIZE);
  193. struct hlist_head vectors[WHEEL_SIZE];
  194. } ____cacheline_aligned;
  195. static DEFINE_PER_CPU(struct timer_base, timer_bases[NR_BASES]);
  196. #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
  197. unsigned int sysctl_timer_migration = 1;
  198. void timers_update_migration(bool update_nohz)
  199. {
  200. bool on = sysctl_timer_migration && tick_nohz_active;
  201. unsigned int cpu;
  202. /* Avoid the loop, if nothing to update */
  203. if (this_cpu_read(timer_bases[BASE_STD].migration_enabled) == on)
  204. return;
  205. for_each_possible_cpu(cpu) {
  206. per_cpu(timer_bases[BASE_STD].migration_enabled, cpu) = on;
  207. per_cpu(timer_bases[BASE_DEF].migration_enabled, cpu) = on;
  208. per_cpu(hrtimer_bases.migration_enabled, cpu) = on;
  209. if (!update_nohz)
  210. continue;
  211. per_cpu(timer_bases[BASE_STD].nohz_active, cpu) = true;
  212. per_cpu(timer_bases[BASE_DEF].nohz_active, cpu) = true;
  213. per_cpu(hrtimer_bases.nohz_active, cpu) = true;
  214. }
  215. }
  216. int timer_migration_handler(struct ctl_table *table, int write,
  217. void __user *buffer, size_t *lenp,
  218. loff_t *ppos)
  219. {
  220. static DEFINE_MUTEX(mutex);
  221. int ret;
  222. mutex_lock(&mutex);
  223. ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
  224. if (!ret && write)
  225. timers_update_migration(false);
  226. mutex_unlock(&mutex);
  227. return ret;
  228. }
  229. #endif
  230. static unsigned long round_jiffies_common(unsigned long j, int cpu,
  231. bool force_up)
  232. {
  233. int rem;
  234. unsigned long original = j;
  235. /*
  236. * We don't want all cpus firing their timers at once hitting the
  237. * same lock or cachelines, so we skew each extra cpu with an extra
  238. * 3 jiffies. This 3 jiffies came originally from the mm/ code which
  239. * already did this.
  240. * The skew is done by adding 3*cpunr, then round, then subtract this
  241. * extra offset again.
  242. */
  243. j += cpu * 3;
  244. rem = j % HZ;
  245. /*
  246. * If the target jiffie is just after a whole second (which can happen
  247. * due to delays of the timer irq, long irq off times etc etc) then
  248. * we should round down to the whole second, not up. Use 1/4th second
  249. * as cutoff for this rounding as an extreme upper bound for this.
  250. * But never round down if @force_up is set.
  251. */
  252. if (rem < HZ/4 && !force_up) /* round down */
  253. j = j - rem;
  254. else /* round up */
  255. j = j - rem + HZ;
  256. /* now that we have rounded, subtract the extra skew again */
  257. j -= cpu * 3;
  258. /*
  259. * Make sure j is still in the future. Otherwise return the
  260. * unmodified value.
  261. */
  262. return time_is_after_jiffies(j) ? j : original;
  263. }
  264. /**
  265. * __round_jiffies - function to round jiffies to a full second
  266. * @j: the time in (absolute) jiffies that should be rounded
  267. * @cpu: the processor number on which the timeout will happen
  268. *
  269. * __round_jiffies() rounds an absolute time in the future (in jiffies)
  270. * up or down to (approximately) full seconds. This is useful for timers
  271. * for which the exact time they fire does not matter too much, as long as
  272. * they fire approximately every X seconds.
  273. *
  274. * By rounding these timers to whole seconds, all such timers will fire
  275. * at the same time, rather than at various times spread out. The goal
  276. * of this is to have the CPU wake up less, which saves power.
  277. *
  278. * The exact rounding is skewed for each processor to avoid all
  279. * processors firing at the exact same time, which could lead
  280. * to lock contention or spurious cache line bouncing.
  281. *
  282. * The return value is the rounded version of the @j parameter.
  283. */
  284. unsigned long __round_jiffies(unsigned long j, int cpu)
  285. {
  286. return round_jiffies_common(j, cpu, false);
  287. }
  288. EXPORT_SYMBOL_GPL(__round_jiffies);
  289. /**
  290. * __round_jiffies_relative - function to round jiffies to a full second
  291. * @j: the time in (relative) jiffies that should be rounded
  292. * @cpu: the processor number on which the timeout will happen
  293. *
  294. * __round_jiffies_relative() rounds a time delta in the future (in jiffies)
  295. * up or down to (approximately) full seconds. This is useful for timers
  296. * for which the exact time they fire does not matter too much, as long as
  297. * they fire approximately every X seconds.
  298. *
  299. * By rounding these timers to whole seconds, all such timers will fire
  300. * at the same time, rather than at various times spread out. The goal
  301. * of this is to have the CPU wake up less, which saves power.
  302. *
  303. * The exact rounding is skewed for each processor to avoid all
  304. * processors firing at the exact same time, which could lead
  305. * to lock contention or spurious cache line bouncing.
  306. *
  307. * The return value is the rounded version of the @j parameter.
  308. */
  309. unsigned long __round_jiffies_relative(unsigned long j, int cpu)
  310. {
  311. unsigned long j0 = jiffies;
  312. /* Use j0 because jiffies might change while we run */
  313. return round_jiffies_common(j + j0, cpu, false) - j0;
  314. }
  315. EXPORT_SYMBOL_GPL(__round_jiffies_relative);
  316. /**
  317. * round_jiffies - function to round jiffies to a full second
  318. * @j: the time in (absolute) jiffies that should be rounded
  319. *
  320. * round_jiffies() rounds an absolute time in the future (in jiffies)
  321. * up or down to (approximately) full seconds. This is useful for timers
  322. * for which the exact time they fire does not matter too much, as long as
  323. * they fire approximately every X seconds.
  324. *
  325. * By rounding these timers to whole seconds, all such timers will fire
  326. * at the same time, rather than at various times spread out. The goal
  327. * of this is to have the CPU wake up less, which saves power.
  328. *
  329. * The return value is the rounded version of the @j parameter.
  330. */
  331. unsigned long round_jiffies(unsigned long j)
  332. {
  333. return round_jiffies_common(j, raw_smp_processor_id(), false);
  334. }
  335. EXPORT_SYMBOL_GPL(round_jiffies);
  336. /**
  337. * round_jiffies_relative - function to round jiffies to a full second
  338. * @j: the time in (relative) jiffies that should be rounded
  339. *
  340. * round_jiffies_relative() rounds a time delta in the future (in jiffies)
  341. * up or down to (approximately) full seconds. This is useful for timers
  342. * for which the exact time they fire does not matter too much, as long as
  343. * they fire approximately every X seconds.
  344. *
  345. * By rounding these timers to whole seconds, all such timers will fire
  346. * at the same time, rather than at various times spread out. The goal
  347. * of this is to have the CPU wake up less, which saves power.
  348. *
  349. * The return value is the rounded version of the @j parameter.
  350. */
  351. unsigned long round_jiffies_relative(unsigned long j)
  352. {
  353. return __round_jiffies_relative(j, raw_smp_processor_id());
  354. }
  355. EXPORT_SYMBOL_GPL(round_jiffies_relative);
  356. /**
  357. * __round_jiffies_up - function to round jiffies up to a full second
  358. * @j: the time in (absolute) jiffies that should be rounded
  359. * @cpu: the processor number on which the timeout will happen
  360. *
  361. * This is the same as __round_jiffies() except that it will never
  362. * round down. This is useful for timeouts for which the exact time
  363. * of firing does not matter too much, as long as they don't fire too
  364. * early.
  365. */
  366. unsigned long __round_jiffies_up(unsigned long j, int cpu)
  367. {
  368. return round_jiffies_common(j, cpu, true);
  369. }
  370. EXPORT_SYMBOL_GPL(__round_jiffies_up);
  371. /**
  372. * __round_jiffies_up_relative - function to round jiffies up to a full second
  373. * @j: the time in (relative) jiffies that should be rounded
  374. * @cpu: the processor number on which the timeout will happen
  375. *
  376. * This is the same as __round_jiffies_relative() except that it will never
  377. * round down. This is useful for timeouts for which the exact time
  378. * of firing does not matter too much, as long as they don't fire too
  379. * early.
  380. */
  381. unsigned long __round_jiffies_up_relative(unsigned long j, int cpu)
  382. {
  383. unsigned long j0 = jiffies;
  384. /* Use j0 because jiffies might change while we run */
  385. return round_jiffies_common(j + j0, cpu, true) - j0;
  386. }
  387. EXPORT_SYMBOL_GPL(__round_jiffies_up_relative);
  388. /**
  389. * round_jiffies_up - function to round jiffies up to a full second
  390. * @j: the time in (absolute) jiffies that should be rounded
  391. *
  392. * This is the same as round_jiffies() except that it will never
  393. * round down. This is useful for timeouts for which the exact time
  394. * of firing does not matter too much, as long as they don't fire too
  395. * early.
  396. */
  397. unsigned long round_jiffies_up(unsigned long j)
  398. {
  399. return round_jiffies_common(j, raw_smp_processor_id(), true);
  400. }
  401. EXPORT_SYMBOL_GPL(round_jiffies_up);
  402. /**
  403. * round_jiffies_up_relative - function to round jiffies up to a full second
  404. * @j: the time in (relative) jiffies that should be rounded
  405. *
  406. * This is the same as round_jiffies_relative() except that it will never
  407. * round down. This is useful for timeouts for which the exact time
  408. * of firing does not matter too much, as long as they don't fire too
  409. * early.
  410. */
  411. unsigned long round_jiffies_up_relative(unsigned long j)
  412. {
  413. return __round_jiffies_up_relative(j, raw_smp_processor_id());
  414. }
  415. EXPORT_SYMBOL_GPL(round_jiffies_up_relative);
  416. static inline unsigned int timer_get_idx(struct timer_list *timer)
  417. {
  418. return (timer->flags & TIMER_ARRAYMASK) >> TIMER_ARRAYSHIFT;
  419. }
  420. static inline void timer_set_idx(struct timer_list *timer, unsigned int idx)
  421. {
  422. timer->flags = (timer->flags & ~TIMER_ARRAYMASK) |
  423. idx << TIMER_ARRAYSHIFT;
  424. }
  425. /*
  426. * Helper function to calculate the array index for a given expiry
  427. * time.
  428. */
  429. static inline unsigned calc_index(unsigned expires, unsigned lvl)
  430. {
  431. expires = (expires + LVL_GRAN(lvl)) >> LVL_SHIFT(lvl);
  432. return LVL_OFFS(lvl) + (expires & LVL_MASK);
  433. }
  434. static int calc_wheel_index(unsigned long expires, unsigned long clk)
  435. {
  436. unsigned long delta = expires - clk;
  437. unsigned int idx;
  438. if (delta < LVL_START(1)) {
  439. idx = calc_index(expires, 0);
  440. } else if (delta < LVL_START(2)) {
  441. idx = calc_index(expires, 1);
  442. } else if (delta < LVL_START(3)) {
  443. idx = calc_index(expires, 2);
  444. } else if (delta < LVL_START(4)) {
  445. idx = calc_index(expires, 3);
  446. } else if (delta < LVL_START(5)) {
  447. idx = calc_index(expires, 4);
  448. } else if (delta < LVL_START(6)) {
  449. idx = calc_index(expires, 5);
  450. } else if (delta < LVL_START(7)) {
  451. idx = calc_index(expires, 6);
  452. } else if (LVL_DEPTH > 8 && delta < LVL_START(8)) {
  453. idx = calc_index(expires, 7);
  454. } else if ((long) delta < 0) {
  455. idx = clk & LVL_MASK;
  456. } else {
  457. /*
  458. * Force expire obscene large timeouts to expire at the
  459. * capacity limit of the wheel.
  460. */
  461. if (expires >= WHEEL_TIMEOUT_CUTOFF)
  462. expires = WHEEL_TIMEOUT_MAX;
  463. idx = calc_index(expires, LVL_DEPTH - 1);
  464. }
  465. return idx;
  466. }
  467. /*
  468. * Enqueue the timer into the hash bucket, mark it pending in
  469. * the bitmap and store the index in the timer flags.
  470. */
  471. static void enqueue_timer(struct timer_base *base, struct timer_list *timer,
  472. unsigned int idx)
  473. {
  474. hlist_add_head(&timer->entry, base->vectors + idx);
  475. __set_bit(idx, base->pending_map);
  476. timer_set_idx(timer, idx);
  477. }
  478. static void
  479. __internal_add_timer(struct timer_base *base, struct timer_list *timer)
  480. {
  481. unsigned int idx;
  482. idx = calc_wheel_index(timer->expires, base->clk);
  483. enqueue_timer(base, timer, idx);
  484. }
  485. static void
  486. trigger_dyntick_cpu(struct timer_base *base, struct timer_list *timer)
  487. {
  488. if (!IS_ENABLED(CONFIG_NO_HZ_COMMON) || !base->nohz_active)
  489. return;
  490. /*
  491. * TODO: This wants some optimizing similar to the code below, but we
  492. * will do that when we switch from push to pull for deferrable timers.
  493. */
  494. if (timer->flags & TIMER_DEFERRABLE) {
  495. if (tick_nohz_full_cpu(base->cpu))
  496. wake_up_nohz_cpu(base->cpu);
  497. return;
  498. }
  499. /*
  500. * We might have to IPI the remote CPU if the base is idle and the
  501. * timer is not deferrable. If the other CPU is on the way to idle
  502. * then it can't set base->is_idle as we hold the base lock:
  503. */
  504. if (!base->is_idle)
  505. return;
  506. /* Check whether this is the new first expiring timer: */
  507. if (time_after_eq(timer->expires, base->next_expiry))
  508. return;
  509. /*
  510. * Set the next expiry time and kick the CPU so it can reevaluate the
  511. * wheel:
  512. */
  513. base->next_expiry = timer->expires;
  514. wake_up_nohz_cpu(base->cpu);
  515. }
  516. static void
  517. internal_add_timer(struct timer_base *base, struct timer_list *timer)
  518. {
  519. __internal_add_timer(base, timer);
  520. trigger_dyntick_cpu(base, timer);
  521. }
  522. #ifdef CONFIG_DEBUG_OBJECTS_TIMERS
  523. static struct debug_obj_descr timer_debug_descr;
  524. static void *timer_debug_hint(void *addr)
  525. {
  526. return ((struct timer_list *) addr)->function;
  527. }
  528. static bool timer_is_static_object(void *addr)
  529. {
  530. struct timer_list *timer = addr;
  531. return (timer->entry.pprev == NULL &&
  532. timer->entry.next == TIMER_ENTRY_STATIC);
  533. }
  534. /*
  535. * fixup_init is called when:
  536. * - an active object is initialized
  537. */
  538. static bool timer_fixup_init(void *addr, enum debug_obj_state state)
  539. {
  540. struct timer_list *timer = addr;
  541. switch (state) {
  542. case ODEBUG_STATE_ACTIVE:
  543. del_timer_sync(timer);
  544. debug_object_init(timer, &timer_debug_descr);
  545. return true;
  546. default:
  547. return false;
  548. }
  549. }
  550. /* Stub timer callback for improperly used timers. */
  551. static void stub_timer(unsigned long data)
  552. {
  553. WARN_ON(1);
  554. }
  555. /*
  556. * fixup_activate is called when:
  557. * - an active object is activated
  558. * - an unknown non-static object is activated
  559. */
  560. static bool timer_fixup_activate(void *addr, enum debug_obj_state state)
  561. {
  562. struct timer_list *timer = addr;
  563. switch (state) {
  564. case ODEBUG_STATE_NOTAVAILABLE:
  565. setup_timer(timer, stub_timer, 0);
  566. return true;
  567. case ODEBUG_STATE_ACTIVE:
  568. WARN_ON(1);
  569. default:
  570. return false;
  571. }
  572. }
  573. /*
  574. * fixup_free is called when:
  575. * - an active object is freed
  576. */
  577. static bool timer_fixup_free(void *addr, enum debug_obj_state state)
  578. {
  579. struct timer_list *timer = addr;
  580. switch (state) {
  581. case ODEBUG_STATE_ACTIVE:
  582. del_timer_sync(timer);
  583. debug_object_free(timer, &timer_debug_descr);
  584. return true;
  585. default:
  586. return false;
  587. }
  588. }
  589. /*
  590. * fixup_assert_init is called when:
  591. * - an untracked/uninit-ed object is found
  592. */
  593. static bool timer_fixup_assert_init(void *addr, enum debug_obj_state state)
  594. {
  595. struct timer_list *timer = addr;
  596. switch (state) {
  597. case ODEBUG_STATE_NOTAVAILABLE:
  598. setup_timer(timer, stub_timer, 0);
  599. return true;
  600. default:
  601. return false;
  602. }
  603. }
  604. static struct debug_obj_descr timer_debug_descr = {
  605. .name = "timer_list",
  606. .debug_hint = timer_debug_hint,
  607. .is_static_object = timer_is_static_object,
  608. .fixup_init = timer_fixup_init,
  609. .fixup_activate = timer_fixup_activate,
  610. .fixup_free = timer_fixup_free,
  611. .fixup_assert_init = timer_fixup_assert_init,
  612. };
  613. static inline void debug_timer_init(struct timer_list *timer)
  614. {
  615. debug_object_init(timer, &timer_debug_descr);
  616. }
  617. static inline void debug_timer_activate(struct timer_list *timer)
  618. {
  619. debug_object_activate(timer, &timer_debug_descr);
  620. }
  621. static inline void debug_timer_deactivate(struct timer_list *timer)
  622. {
  623. debug_object_deactivate(timer, &timer_debug_descr);
  624. }
  625. static inline void debug_timer_free(struct timer_list *timer)
  626. {
  627. debug_object_free(timer, &timer_debug_descr);
  628. }
  629. static inline void debug_timer_assert_init(struct timer_list *timer)
  630. {
  631. debug_object_assert_init(timer, &timer_debug_descr);
  632. }
  633. static void do_init_timer(struct timer_list *timer, unsigned int flags,
  634. const char *name, struct lock_class_key *key);
  635. void init_timer_on_stack_key(struct timer_list *timer, unsigned int flags,
  636. const char *name, struct lock_class_key *key)
  637. {
  638. debug_object_init_on_stack(timer, &timer_debug_descr);
  639. do_init_timer(timer, flags, name, key);
  640. }
  641. EXPORT_SYMBOL_GPL(init_timer_on_stack_key);
  642. void destroy_timer_on_stack(struct timer_list *timer)
  643. {
  644. debug_object_free(timer, &timer_debug_descr);
  645. }
  646. EXPORT_SYMBOL_GPL(destroy_timer_on_stack);
  647. #else
  648. static inline void debug_timer_init(struct timer_list *timer) { }
  649. static inline void debug_timer_activate(struct timer_list *timer) { }
  650. static inline void debug_timer_deactivate(struct timer_list *timer) { }
  651. static inline void debug_timer_assert_init(struct timer_list *timer) { }
  652. #endif
  653. static inline void debug_init(struct timer_list *timer)
  654. {
  655. debug_timer_init(timer);
  656. trace_timer_init(timer);
  657. }
  658. static inline void
  659. debug_activate(struct timer_list *timer, unsigned long expires)
  660. {
  661. debug_timer_activate(timer);
  662. trace_timer_start(timer, expires, timer->flags);
  663. }
  664. static inline void debug_deactivate(struct timer_list *timer)
  665. {
  666. debug_timer_deactivate(timer);
  667. trace_timer_cancel(timer);
  668. }
  669. static inline void debug_assert_init(struct timer_list *timer)
  670. {
  671. debug_timer_assert_init(timer);
  672. }
  673. static void do_init_timer(struct timer_list *timer, unsigned int flags,
  674. const char *name, struct lock_class_key *key)
  675. {
  676. timer->entry.pprev = NULL;
  677. timer->flags = flags | raw_smp_processor_id();
  678. lockdep_init_map(&timer->lockdep_map, name, key, 0);
  679. }
  680. /**
  681. * init_timer_key - initialize a timer
  682. * @timer: the timer to be initialized
  683. * @flags: timer flags
  684. * @name: name of the timer
  685. * @key: lockdep class key of the fake lock used for tracking timer
  686. * sync lock dependencies
  687. *
  688. * init_timer_key() must be done to a timer prior calling *any* of the
  689. * other timer functions.
  690. */
  691. void init_timer_key(struct timer_list *timer, unsigned int flags,
  692. const char *name, struct lock_class_key *key)
  693. {
  694. debug_init(timer);
  695. do_init_timer(timer, flags, name, key);
  696. }
  697. EXPORT_SYMBOL(init_timer_key);
  698. static inline void detach_timer(struct timer_list *timer, bool clear_pending)
  699. {
  700. struct hlist_node *entry = &timer->entry;
  701. debug_deactivate(timer);
  702. __hlist_del(entry);
  703. if (clear_pending)
  704. entry->pprev = NULL;
  705. entry->next = LIST_POISON2;
  706. }
  707. static int detach_if_pending(struct timer_list *timer, struct timer_base *base,
  708. bool clear_pending)
  709. {
  710. unsigned idx = timer_get_idx(timer);
  711. if (!timer_pending(timer))
  712. return 0;
  713. if (hlist_is_singular_node(&timer->entry, base->vectors + idx))
  714. __clear_bit(idx, base->pending_map);
  715. detach_timer(timer, clear_pending);
  716. return 1;
  717. }
  718. static inline struct timer_base *get_timer_cpu_base(u32 tflags, u32 cpu)
  719. {
  720. struct timer_base *base = per_cpu_ptr(&timer_bases[BASE_STD], cpu);
  721. /*
  722. * If the timer is deferrable and nohz is active then we need to use
  723. * the deferrable base.
  724. */
  725. if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && base->nohz_active &&
  726. (tflags & TIMER_DEFERRABLE))
  727. base = per_cpu_ptr(&timer_bases[BASE_DEF], cpu);
  728. return base;
  729. }
  730. static inline struct timer_base *get_timer_this_cpu_base(u32 tflags)
  731. {
  732. struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
  733. /*
  734. * If the timer is deferrable and nohz is active then we need to use
  735. * the deferrable base.
  736. */
  737. if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && base->nohz_active &&
  738. (tflags & TIMER_DEFERRABLE))
  739. base = this_cpu_ptr(&timer_bases[BASE_DEF]);
  740. return base;
  741. }
  742. static inline struct timer_base *get_timer_base(u32 tflags)
  743. {
  744. return get_timer_cpu_base(tflags, tflags & TIMER_CPUMASK);
  745. }
  746. #ifdef CONFIG_NO_HZ_COMMON
  747. static inline struct timer_base *
  748. get_target_base(struct timer_base *base, unsigned tflags)
  749. {
  750. #ifdef CONFIG_SMP
  751. if ((tflags & TIMER_PINNED) || !base->migration_enabled)
  752. return get_timer_this_cpu_base(tflags);
  753. return get_timer_cpu_base(tflags, get_nohz_timer_target());
  754. #else
  755. return get_timer_this_cpu_base(tflags);
  756. #endif
  757. }
  758. static inline void forward_timer_base(struct timer_base *base)
  759. {
  760. unsigned long jnow;
  761. /*
  762. * We only forward the base when we are idle or have just come out of
  763. * idle (must_forward_clk logic), and have a delta between base clock
  764. * and jiffies. In the common case, run_timers will take care of it.
  765. */
  766. if (likely(!base->must_forward_clk))
  767. return;
  768. jnow = READ_ONCE(jiffies);
  769. base->must_forward_clk = base->is_idle;
  770. if ((long)(jnow - base->clk) < 2)
  771. return;
  772. /*
  773. * If the next expiry value is > jiffies, then we fast forward to
  774. * jiffies otherwise we forward to the next expiry value.
  775. */
  776. if (time_after(base->next_expiry, jnow))
  777. base->clk = jnow;
  778. else
  779. base->clk = base->next_expiry;
  780. }
  781. #else
  782. static inline struct timer_base *
  783. get_target_base(struct timer_base *base, unsigned tflags)
  784. {
  785. return get_timer_this_cpu_base(tflags);
  786. }
  787. static inline void forward_timer_base(struct timer_base *base) { }
  788. #endif
  789. /*
  790. * We are using hashed locking: Holding per_cpu(timer_bases[x]).lock means
  791. * that all timers which are tied to this base are locked, and the base itself
  792. * is locked too.
  793. *
  794. * So __run_timers/migrate_timers can safely modify all timers which could
  795. * be found in the base->vectors array.
  796. *
  797. * When a timer is migrating then the TIMER_MIGRATING flag is set and we need
  798. * to wait until the migration is done.
  799. */
  800. static struct timer_base *lock_timer_base(struct timer_list *timer,
  801. unsigned long *flags)
  802. __acquires(timer->base->lock)
  803. {
  804. for (;;) {
  805. struct timer_base *base;
  806. u32 tf;
  807. /*
  808. * We need to use READ_ONCE() here, otherwise the compiler
  809. * might re-read @tf between the check for TIMER_MIGRATING
  810. * and spin_lock().
  811. */
  812. tf = READ_ONCE(timer->flags);
  813. if (!(tf & TIMER_MIGRATING)) {
  814. base = get_timer_base(tf);
  815. raw_spin_lock_irqsave(&base->lock, *flags);
  816. if (timer->flags == tf)
  817. return base;
  818. raw_spin_unlock_irqrestore(&base->lock, *flags);
  819. }
  820. cpu_relax();
  821. }
  822. }
  823. static inline int
  824. __mod_timer(struct timer_list *timer, unsigned long expires, bool pending_only)
  825. {
  826. struct timer_base *base, *new_base;
  827. unsigned int idx = UINT_MAX;
  828. unsigned long clk = 0, flags;
  829. int ret = 0;
  830. BUG_ON(!timer->function);
  831. /*
  832. * This is a common optimization triggered by the networking code - if
  833. * the timer is re-modified to have the same timeout or ends up in the
  834. * same array bucket then just return:
  835. */
  836. if (timer_pending(timer)) {
  837. /*
  838. * The downside of this optimization is that it can result in
  839. * larger granularity than you would get from adding a new
  840. * timer with this expiry.
  841. */
  842. if (timer->expires == expires)
  843. return 1;
  844. /*
  845. * We lock timer base and calculate the bucket index right
  846. * here. If the timer ends up in the same bucket, then we
  847. * just update the expiry time and avoid the whole
  848. * dequeue/enqueue dance.
  849. */
  850. base = lock_timer_base(timer, &flags);
  851. forward_timer_base(base);
  852. clk = base->clk;
  853. idx = calc_wheel_index(expires, clk);
  854. /*
  855. * Retrieve and compare the array index of the pending
  856. * timer. If it matches set the expiry to the new value so a
  857. * subsequent call will exit in the expires check above.
  858. */
  859. if (idx == timer_get_idx(timer)) {
  860. timer->expires = expires;
  861. ret = 1;
  862. goto out_unlock;
  863. }
  864. } else {
  865. base = lock_timer_base(timer, &flags);
  866. forward_timer_base(base);
  867. }
  868. ret = detach_if_pending(timer, base, false);
  869. if (!ret && pending_only)
  870. goto out_unlock;
  871. debug_activate(timer, expires);
  872. new_base = get_target_base(base, timer->flags);
  873. if (base != new_base) {
  874. /*
  875. * We are trying to schedule the timer on the new base.
  876. * However we can't change timer's base while it is running,
  877. * otherwise del_timer_sync() can't detect that the timer's
  878. * handler yet has not finished. This also guarantees that the
  879. * timer is serialized wrt itself.
  880. */
  881. if (likely(base->running_timer != timer)) {
  882. /* See the comment in lock_timer_base() */
  883. timer->flags |= TIMER_MIGRATING;
  884. raw_spin_unlock(&base->lock);
  885. base = new_base;
  886. raw_spin_lock(&base->lock);
  887. WRITE_ONCE(timer->flags,
  888. (timer->flags & ~TIMER_BASEMASK) | base->cpu);
  889. forward_timer_base(base);
  890. }
  891. }
  892. timer->expires = expires;
  893. /*
  894. * If 'idx' was calculated above and the base time did not advance
  895. * between calculating 'idx' and possibly switching the base, only
  896. * enqueue_timer() and trigger_dyntick_cpu() is required. Otherwise
  897. * we need to (re)calculate the wheel index via
  898. * internal_add_timer().
  899. */
  900. if (idx != UINT_MAX && clk == base->clk) {
  901. enqueue_timer(base, timer, idx);
  902. trigger_dyntick_cpu(base, timer);
  903. } else {
  904. internal_add_timer(base, timer);
  905. }
  906. out_unlock:
  907. raw_spin_unlock_irqrestore(&base->lock, flags);
  908. return ret;
  909. }
  910. /**
  911. * mod_timer_pending - modify a pending timer's timeout
  912. * @timer: the pending timer to be modified
  913. * @expires: new timeout in jiffies
  914. *
  915. * mod_timer_pending() is the same for pending timers as mod_timer(),
  916. * but will not re-activate and modify already deleted timers.
  917. *
  918. * It is useful for unserialized use of timers.
  919. */
  920. int mod_timer_pending(struct timer_list *timer, unsigned long expires)
  921. {
  922. return __mod_timer(timer, expires, true);
  923. }
  924. EXPORT_SYMBOL(mod_timer_pending);
  925. /**
  926. * mod_timer - modify a timer's timeout
  927. * @timer: the timer to be modified
  928. * @expires: new timeout in jiffies
  929. *
  930. * mod_timer() is a more efficient way to update the expire field of an
  931. * active timer (if the timer is inactive it will be activated)
  932. *
  933. * mod_timer(timer, expires) is equivalent to:
  934. *
  935. * del_timer(timer); timer->expires = expires; add_timer(timer);
  936. *
  937. * Note that if there are multiple unserialized concurrent users of the
  938. * same timer, then mod_timer() is the only safe way to modify the timeout,
  939. * since add_timer() cannot modify an already running timer.
  940. *
  941. * The function returns whether it has modified a pending timer or not.
  942. * (ie. mod_timer() of an inactive timer returns 0, mod_timer() of an
  943. * active timer returns 1.)
  944. */
  945. int mod_timer(struct timer_list *timer, unsigned long expires)
  946. {
  947. return __mod_timer(timer, expires, false);
  948. }
  949. EXPORT_SYMBOL(mod_timer);
  950. /**
  951. * add_timer - start a timer
  952. * @timer: the timer to be added
  953. *
  954. * The kernel will do a ->function(->data) callback from the
  955. * timer interrupt at the ->expires point in the future. The
  956. * current time is 'jiffies'.
  957. *
  958. * The timer's ->expires, ->function (and if the handler uses it, ->data)
  959. * fields must be set prior calling this function.
  960. *
  961. * Timers with an ->expires field in the past will be executed in the next
  962. * timer tick.
  963. */
  964. void add_timer(struct timer_list *timer)
  965. {
  966. BUG_ON(timer_pending(timer));
  967. mod_timer(timer, timer->expires);
  968. }
  969. EXPORT_SYMBOL(add_timer);
  970. /**
  971. * add_timer_on - start a timer on a particular CPU
  972. * @timer: the timer to be added
  973. * @cpu: the CPU to start it on
  974. *
  975. * This is not very scalable on SMP. Double adds are not possible.
  976. */
  977. void add_timer_on(struct timer_list *timer, int cpu)
  978. {
  979. struct timer_base *new_base, *base;
  980. unsigned long flags;
  981. BUG_ON(timer_pending(timer) || !timer->function);
  982. new_base = get_timer_cpu_base(timer->flags, cpu);
  983. /*
  984. * If @timer was on a different CPU, it should be migrated with the
  985. * old base locked to prevent other operations proceeding with the
  986. * wrong base locked. See lock_timer_base().
  987. */
  988. base = lock_timer_base(timer, &flags);
  989. if (base != new_base) {
  990. timer->flags |= TIMER_MIGRATING;
  991. raw_spin_unlock(&base->lock);
  992. base = new_base;
  993. raw_spin_lock(&base->lock);
  994. WRITE_ONCE(timer->flags,
  995. (timer->flags & ~TIMER_BASEMASK) | cpu);
  996. }
  997. forward_timer_base(base);
  998. debug_activate(timer, timer->expires);
  999. internal_add_timer(base, timer);
  1000. raw_spin_unlock_irqrestore(&base->lock, flags);
  1001. }
  1002. EXPORT_SYMBOL_GPL(add_timer_on);
  1003. /**
  1004. * del_timer - deactivate a timer.
  1005. * @timer: the timer to be deactivated
  1006. *
  1007. * del_timer() deactivates a timer - this works on both active and inactive
  1008. * timers.
  1009. *
  1010. * The function returns whether it has deactivated a pending timer or not.
  1011. * (ie. del_timer() of an inactive timer returns 0, del_timer() of an
  1012. * active timer returns 1.)
  1013. */
  1014. int del_timer(struct timer_list *timer)
  1015. {
  1016. struct timer_base *base;
  1017. unsigned long flags;
  1018. int ret = 0;
  1019. debug_assert_init(timer);
  1020. if (timer_pending(timer)) {
  1021. base = lock_timer_base(timer, &flags);
  1022. ret = detach_if_pending(timer, base, true);
  1023. raw_spin_unlock_irqrestore(&base->lock, flags);
  1024. }
  1025. return ret;
  1026. }
  1027. EXPORT_SYMBOL(del_timer);
  1028. /**
  1029. * try_to_del_timer_sync - Try to deactivate a timer
  1030. * @timer: timer to delete
  1031. *
  1032. * This function tries to deactivate a timer. Upon successful (ret >= 0)
  1033. * exit the timer is not queued and the handler is not running on any CPU.
  1034. */
  1035. int try_to_del_timer_sync(struct timer_list *timer)
  1036. {
  1037. struct timer_base *base;
  1038. unsigned long flags;
  1039. int ret = -1;
  1040. debug_assert_init(timer);
  1041. base = lock_timer_base(timer, &flags);
  1042. if (base->running_timer != timer)
  1043. ret = detach_if_pending(timer, base, true);
  1044. raw_spin_unlock_irqrestore(&base->lock, flags);
  1045. return ret;
  1046. }
  1047. EXPORT_SYMBOL(try_to_del_timer_sync);
  1048. #ifdef CONFIG_SMP
  1049. /**
  1050. * del_timer_sync - deactivate a timer and wait for the handler to finish.
  1051. * @timer: the timer to be deactivated
  1052. *
  1053. * This function only differs from del_timer() on SMP: besides deactivating
  1054. * the timer it also makes sure the handler has finished executing on other
  1055. * CPUs.
  1056. *
  1057. * Synchronization rules: Callers must prevent restarting of the timer,
  1058. * otherwise this function is meaningless. It must not be called from
  1059. * interrupt contexts unless the timer is an irqsafe one. The caller must
  1060. * not hold locks which would prevent completion of the timer's
  1061. * handler. The timer's handler must not call add_timer_on(). Upon exit the
  1062. * timer is not queued and the handler is not running on any CPU.
  1063. *
  1064. * Note: For !irqsafe timers, you must not hold locks that are held in
  1065. * interrupt context while calling this function. Even if the lock has
  1066. * nothing to do with the timer in question. Here's why:
  1067. *
  1068. * CPU0 CPU1
  1069. * ---- ----
  1070. * <SOFTIRQ>
  1071. * call_timer_fn();
  1072. * base->running_timer = mytimer;
  1073. * spin_lock_irq(somelock);
  1074. * <IRQ>
  1075. * spin_lock(somelock);
  1076. * del_timer_sync(mytimer);
  1077. * while (base->running_timer == mytimer);
  1078. *
  1079. * Now del_timer_sync() will never return and never release somelock.
  1080. * The interrupt on the other CPU is waiting to grab somelock but
  1081. * it has interrupted the softirq that CPU0 is waiting to finish.
  1082. *
  1083. * The function returns whether it has deactivated a pending timer or not.
  1084. */
  1085. int del_timer_sync(struct timer_list *timer)
  1086. {
  1087. #ifdef CONFIG_LOCKDEP
  1088. unsigned long flags;
  1089. /*
  1090. * If lockdep gives a backtrace here, please reference
  1091. * the synchronization rules above.
  1092. */
  1093. local_irq_save(flags);
  1094. lock_map_acquire(&timer->lockdep_map);
  1095. lock_map_release(&timer->lockdep_map);
  1096. local_irq_restore(flags);
  1097. #endif
  1098. /*
  1099. * don't use it in hardirq context, because it
  1100. * could lead to deadlock.
  1101. */
  1102. WARN_ON(in_irq() && !(timer->flags & TIMER_IRQSAFE));
  1103. for (;;) {
  1104. int ret = try_to_del_timer_sync(timer);
  1105. if (ret >= 0)
  1106. return ret;
  1107. cpu_relax();
  1108. }
  1109. }
  1110. EXPORT_SYMBOL(del_timer_sync);
  1111. #endif
  1112. static void call_timer_fn(struct timer_list *timer, void (*fn)(unsigned long),
  1113. unsigned long data)
  1114. {
  1115. int count = preempt_count();
  1116. #ifdef CONFIG_LOCKDEP
  1117. /*
  1118. * It is permissible to free the timer from inside the
  1119. * function that is called from it, this we need to take into
  1120. * account for lockdep too. To avoid bogus "held lock freed"
  1121. * warnings as well as problems when looking into
  1122. * timer->lockdep_map, make a copy and use that here.
  1123. */
  1124. struct lockdep_map lockdep_map;
  1125. lockdep_copy_map(&lockdep_map, &timer->lockdep_map);
  1126. #endif
  1127. /*
  1128. * Couple the lock chain with the lock chain at
  1129. * del_timer_sync() by acquiring the lock_map around the fn()
  1130. * call here and in del_timer_sync().
  1131. */
  1132. lock_map_acquire(&lockdep_map);
  1133. trace_timer_expire_entry(timer);
  1134. fn(data);
  1135. trace_timer_expire_exit(timer);
  1136. lock_map_release(&lockdep_map);
  1137. if (count != preempt_count()) {
  1138. WARN_ONCE(1, "timer: %pF preempt leak: %08x -> %08x\n",
  1139. fn, count, preempt_count());
  1140. /*
  1141. * Restore the preempt count. That gives us a decent
  1142. * chance to survive and extract information. If the
  1143. * callback kept a lock held, bad luck, but not worse
  1144. * than the BUG() we had.
  1145. */
  1146. preempt_count_set(count);
  1147. }
  1148. }
  1149. static void expire_timers(struct timer_base *base, struct hlist_head *head)
  1150. {
  1151. while (!hlist_empty(head)) {
  1152. struct timer_list *timer;
  1153. void (*fn)(unsigned long);
  1154. unsigned long data;
  1155. timer = hlist_entry(head->first, struct timer_list, entry);
  1156. base->running_timer = timer;
  1157. detach_timer(timer, true);
  1158. fn = timer->function;
  1159. data = timer->data;
  1160. if (timer->flags & TIMER_IRQSAFE) {
  1161. raw_spin_unlock(&base->lock);
  1162. call_timer_fn(timer, fn, data);
  1163. raw_spin_lock(&base->lock);
  1164. } else {
  1165. raw_spin_unlock_irq(&base->lock);
  1166. call_timer_fn(timer, fn, data);
  1167. raw_spin_lock_irq(&base->lock);
  1168. }
  1169. }
  1170. }
  1171. static int __collect_expired_timers(struct timer_base *base,
  1172. struct hlist_head *heads)
  1173. {
  1174. unsigned long clk = base->clk;
  1175. struct hlist_head *vec;
  1176. int i, levels = 0;
  1177. unsigned int idx;
  1178. for (i = 0; i < LVL_DEPTH; i++) {
  1179. idx = (clk & LVL_MASK) + i * LVL_SIZE;
  1180. if (__test_and_clear_bit(idx, base->pending_map)) {
  1181. vec = base->vectors + idx;
  1182. hlist_move_list(vec, heads++);
  1183. levels++;
  1184. }
  1185. /* Is it time to look at the next level? */
  1186. if (clk & LVL_CLK_MASK)
  1187. break;
  1188. /* Shift clock for the next level granularity */
  1189. clk >>= LVL_CLK_SHIFT;
  1190. }
  1191. return levels;
  1192. }
  1193. #ifdef CONFIG_NO_HZ_COMMON
  1194. /*
  1195. * Find the next pending bucket of a level. Search from level start (@offset)
  1196. * + @clk upwards and if nothing there, search from start of the level
  1197. * (@offset) up to @offset + clk.
  1198. */
  1199. static int next_pending_bucket(struct timer_base *base, unsigned offset,
  1200. unsigned clk)
  1201. {
  1202. unsigned pos, start = offset + clk;
  1203. unsigned end = offset + LVL_SIZE;
  1204. pos = find_next_bit(base->pending_map, end, start);
  1205. if (pos < end)
  1206. return pos - start;
  1207. pos = find_next_bit(base->pending_map, start, offset);
  1208. return pos < start ? pos + LVL_SIZE - start : -1;
  1209. }
  1210. /*
  1211. * Search the first expiring timer in the various clock levels. Caller must
  1212. * hold base->lock.
  1213. */
  1214. static unsigned long __next_timer_interrupt(struct timer_base *base)
  1215. {
  1216. unsigned long clk, next, adj;
  1217. unsigned lvl, offset = 0;
  1218. next = base->clk + NEXT_TIMER_MAX_DELTA;
  1219. clk = base->clk;
  1220. for (lvl = 0; lvl < LVL_DEPTH; lvl++, offset += LVL_SIZE) {
  1221. int pos = next_pending_bucket(base, offset, clk & LVL_MASK);
  1222. if (pos >= 0) {
  1223. unsigned long tmp = clk + (unsigned long) pos;
  1224. tmp <<= LVL_SHIFT(lvl);
  1225. if (time_before(tmp, next))
  1226. next = tmp;
  1227. }
  1228. /*
  1229. * Clock for the next level. If the current level clock lower
  1230. * bits are zero, we look at the next level as is. If not we
  1231. * need to advance it by one because that's going to be the
  1232. * next expiring bucket in that level. base->clk is the next
  1233. * expiring jiffie. So in case of:
  1234. *
  1235. * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0
  1236. * 0 0 0 0 0 0
  1237. *
  1238. * we have to look at all levels @index 0. With
  1239. *
  1240. * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0
  1241. * 0 0 0 0 0 2
  1242. *
  1243. * LVL0 has the next expiring bucket @index 2. The upper
  1244. * levels have the next expiring bucket @index 1.
  1245. *
  1246. * In case that the propagation wraps the next level the same
  1247. * rules apply:
  1248. *
  1249. * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0
  1250. * 0 0 0 0 F 2
  1251. *
  1252. * So after looking at LVL0 we get:
  1253. *
  1254. * LVL5 LVL4 LVL3 LVL2 LVL1
  1255. * 0 0 0 1 0
  1256. *
  1257. * So no propagation from LVL1 to LVL2 because that happened
  1258. * with the add already, but then we need to propagate further
  1259. * from LVL2 to LVL3.
  1260. *
  1261. * So the simple check whether the lower bits of the current
  1262. * level are 0 or not is sufficient for all cases.
  1263. */
  1264. adj = clk & LVL_CLK_MASK ? 1 : 0;
  1265. clk >>= LVL_CLK_SHIFT;
  1266. clk += adj;
  1267. }
  1268. return next;
  1269. }
  1270. /*
  1271. * Check, if the next hrtimer event is before the next timer wheel
  1272. * event:
  1273. */
  1274. static u64 cmp_next_hrtimer_event(u64 basem, u64 expires)
  1275. {
  1276. u64 nextevt = hrtimer_get_next_event();
  1277. /*
  1278. * If high resolution timers are enabled
  1279. * hrtimer_get_next_event() returns KTIME_MAX.
  1280. */
  1281. if (expires <= nextevt)
  1282. return expires;
  1283. /*
  1284. * If the next timer is already expired, return the tick base
  1285. * time so the tick is fired immediately.
  1286. */
  1287. if (nextevt <= basem)
  1288. return basem;
  1289. /*
  1290. * Round up to the next jiffie. High resolution timers are
  1291. * off, so the hrtimers are expired in the tick and we need to
  1292. * make sure that this tick really expires the timer to avoid
  1293. * a ping pong of the nohz stop code.
  1294. *
  1295. * Use DIV_ROUND_UP_ULL to prevent gcc calling __divdi3
  1296. */
  1297. return DIV_ROUND_UP_ULL(nextevt, TICK_NSEC) * TICK_NSEC;
  1298. }
  1299. /**
  1300. * get_next_timer_interrupt - return the time (clock mono) of the next timer
  1301. * @basej: base time jiffies
  1302. * @basem: base time clock monotonic
  1303. *
  1304. * Returns the tick aligned clock monotonic time of the next pending
  1305. * timer or KTIME_MAX if no timer is pending.
  1306. */
  1307. u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
  1308. {
  1309. struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
  1310. u64 expires = KTIME_MAX;
  1311. unsigned long nextevt;
  1312. bool is_max_delta;
  1313. /*
  1314. * Pretend that there is no timer pending if the cpu is offline.
  1315. * Possible pending timers will be migrated later to an active cpu.
  1316. */
  1317. if (cpu_is_offline(smp_processor_id()))
  1318. return expires;
  1319. raw_spin_lock(&base->lock);
  1320. nextevt = __next_timer_interrupt(base);
  1321. is_max_delta = (nextevt == base->clk + NEXT_TIMER_MAX_DELTA);
  1322. base->next_expiry = nextevt;
  1323. /*
  1324. * We have a fresh next event. Check whether we can forward the
  1325. * base. We can only do that when @basej is past base->clk
  1326. * otherwise we might rewind base->clk.
  1327. */
  1328. if (time_after(basej, base->clk)) {
  1329. if (time_after(nextevt, basej))
  1330. base->clk = basej;
  1331. else if (time_after(nextevt, base->clk))
  1332. base->clk = nextevt;
  1333. }
  1334. if (time_before_eq(nextevt, basej)) {
  1335. expires = basem;
  1336. base->is_idle = false;
  1337. } else {
  1338. if (!is_max_delta)
  1339. expires = basem + (u64)(nextevt - basej) * TICK_NSEC;
  1340. /*
  1341. * If we expect to sleep more than a tick, mark the base idle.
  1342. * Also the tick is stopped so any added timer must forward
  1343. * the base clk itself to keep granularity small. This idle
  1344. * logic is only maintained for the BASE_STD base, deferrable
  1345. * timers may still see large granularity skew (by design).
  1346. */
  1347. if ((expires - basem) > TICK_NSEC) {
  1348. base->must_forward_clk = true;
  1349. base->is_idle = true;
  1350. }
  1351. }
  1352. raw_spin_unlock(&base->lock);
  1353. return cmp_next_hrtimer_event(basem, expires);
  1354. }
  1355. /**
  1356. * timer_clear_idle - Clear the idle state of the timer base
  1357. *
  1358. * Called with interrupts disabled
  1359. */
  1360. void timer_clear_idle(void)
  1361. {
  1362. struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
  1363. /*
  1364. * We do this unlocked. The worst outcome is a remote enqueue sending
  1365. * a pointless IPI, but taking the lock would just make the window for
  1366. * sending the IPI a few instructions smaller for the cost of taking
  1367. * the lock in the exit from idle path.
  1368. */
  1369. base->is_idle = false;
  1370. }
  1371. static int collect_expired_timers(struct timer_base *base,
  1372. struct hlist_head *heads)
  1373. {
  1374. /*
  1375. * NOHZ optimization. After a long idle sleep we need to forward the
  1376. * base to current jiffies. Avoid a loop by searching the bitfield for
  1377. * the next expiring timer.
  1378. */
  1379. if ((long)(jiffies - base->clk) > 2) {
  1380. unsigned long next = __next_timer_interrupt(base);
  1381. /*
  1382. * If the next timer is ahead of time forward to current
  1383. * jiffies, otherwise forward to the next expiry time:
  1384. */
  1385. if (time_after(next, jiffies)) {
  1386. /* The call site will increment clock! */
  1387. base->clk = jiffies - 1;
  1388. return 0;
  1389. }
  1390. base->clk = next;
  1391. }
  1392. return __collect_expired_timers(base, heads);
  1393. }
  1394. #else
  1395. static inline int collect_expired_timers(struct timer_base *base,
  1396. struct hlist_head *heads)
  1397. {
  1398. return __collect_expired_timers(base, heads);
  1399. }
  1400. #endif
  1401. /*
  1402. * Called from the timer interrupt handler to charge one tick to the current
  1403. * process. user_tick is 1 if the tick is user time, 0 for system.
  1404. */
  1405. void update_process_times(int user_tick)
  1406. {
  1407. struct task_struct *p = current;
  1408. /* Note: this timer irq context must be accounted for as well. */
  1409. account_process_tick(p, user_tick);
  1410. run_local_timers();
  1411. rcu_check_callbacks(user_tick);
  1412. #ifdef CONFIG_IRQ_WORK
  1413. if (in_irq())
  1414. irq_work_tick();
  1415. #endif
  1416. scheduler_tick();
  1417. if (IS_ENABLED(CONFIG_POSIX_TIMERS))
  1418. run_posix_cpu_timers(p);
  1419. }
  1420. /**
  1421. * __run_timers - run all expired timers (if any) on this CPU.
  1422. * @base: the timer vector to be processed.
  1423. */
  1424. static inline void __run_timers(struct timer_base *base)
  1425. {
  1426. struct hlist_head heads[LVL_DEPTH];
  1427. int levels;
  1428. if (!time_after_eq(jiffies, base->clk))
  1429. return;
  1430. raw_spin_lock_irq(&base->lock);
  1431. while (time_after_eq(jiffies, base->clk)) {
  1432. levels = collect_expired_timers(base, heads);
  1433. base->clk++;
  1434. while (levels--)
  1435. expire_timers(base, heads + levels);
  1436. }
  1437. base->running_timer = NULL;
  1438. raw_spin_unlock_irq(&base->lock);
  1439. }
  1440. /*
  1441. * This function runs timers and the timer-tq in bottom half context.
  1442. */
  1443. static __latent_entropy void run_timer_softirq(struct softirq_action *h)
  1444. {
  1445. struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
  1446. /*
  1447. * must_forward_clk must be cleared before running timers so that any
  1448. * timer functions that call mod_timer will not try to forward the
  1449. * base. idle trcking / clock forwarding logic is only used with
  1450. * BASE_STD timers.
  1451. *
  1452. * The deferrable base does not do idle tracking at all, so we do
  1453. * not forward it. This can result in very large variations in
  1454. * granularity for deferrable timers, but they can be deferred for
  1455. * long periods due to idle.
  1456. */
  1457. base->must_forward_clk = false;
  1458. __run_timers(base);
  1459. if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && base->nohz_active)
  1460. __run_timers(this_cpu_ptr(&timer_bases[BASE_DEF]));
  1461. }
  1462. /*
  1463. * Called by the local, per-CPU timer interrupt on SMP.
  1464. */
  1465. void run_local_timers(void)
  1466. {
  1467. struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
  1468. hrtimer_run_queues();
  1469. /* Raise the softirq only if required. */
  1470. if (time_before(jiffies, base->clk)) {
  1471. if (!IS_ENABLED(CONFIG_NO_HZ_COMMON) || !base->nohz_active)
  1472. return;
  1473. /* CPU is awake, so check the deferrable base. */
  1474. base++;
  1475. if (time_before(jiffies, base->clk))
  1476. return;
  1477. }
  1478. raise_softirq(TIMER_SOFTIRQ);
  1479. }
  1480. static void process_timeout(unsigned long __data)
  1481. {
  1482. wake_up_process((struct task_struct *)__data);
  1483. }
  1484. /**
  1485. * schedule_timeout - sleep until timeout
  1486. * @timeout: timeout value in jiffies
  1487. *
  1488. * Make the current task sleep until @timeout jiffies have
  1489. * elapsed. The routine will return immediately unless
  1490. * the current task state has been set (see set_current_state()).
  1491. *
  1492. * You can set the task state as follows -
  1493. *
  1494. * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to
  1495. * pass before the routine returns unless the current task is explicitly
  1496. * woken up, (e.g. by wake_up_process())".
  1497. *
  1498. * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
  1499. * delivered to the current task or the current task is explicitly woken
  1500. * up.
  1501. *
  1502. * The current task state is guaranteed to be TASK_RUNNING when this
  1503. * routine returns.
  1504. *
  1505. * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule
  1506. * the CPU away without a bound on the timeout. In this case the return
  1507. * value will be %MAX_SCHEDULE_TIMEOUT.
  1508. *
  1509. * Returns 0 when the timer has expired otherwise the remaining time in
  1510. * jiffies will be returned. In all cases the return value is guaranteed
  1511. * to be non-negative.
  1512. */
  1513. signed long __sched schedule_timeout(signed long timeout)
  1514. {
  1515. struct timer_list timer;
  1516. unsigned long expire;
  1517. switch (timeout)
  1518. {
  1519. case MAX_SCHEDULE_TIMEOUT:
  1520. /*
  1521. * These two special cases are useful to be comfortable
  1522. * in the caller. Nothing more. We could take
  1523. * MAX_SCHEDULE_TIMEOUT from one of the negative value
  1524. * but I' d like to return a valid offset (>=0) to allow
  1525. * the caller to do everything it want with the retval.
  1526. */
  1527. schedule();
  1528. goto out;
  1529. default:
  1530. /*
  1531. * Another bit of PARANOID. Note that the retval will be
  1532. * 0 since no piece of kernel is supposed to do a check
  1533. * for a negative retval of schedule_timeout() (since it
  1534. * should never happens anyway). You just have the printk()
  1535. * that will tell you if something is gone wrong and where.
  1536. */
  1537. if (timeout < 0) {
  1538. printk(KERN_ERR "schedule_timeout: wrong timeout "
  1539. "value %lx\n", timeout);
  1540. dump_stack();
  1541. current->state = TASK_RUNNING;
  1542. goto out;
  1543. }
  1544. }
  1545. expire = timeout + jiffies;
  1546. setup_timer_on_stack(&timer, process_timeout, (unsigned long)current);
  1547. __mod_timer(&timer, expire, false);
  1548. schedule();
  1549. del_singleshot_timer_sync(&timer);
  1550. /* Remove the timer from the object tracker */
  1551. destroy_timer_on_stack(&timer);
  1552. timeout = expire - jiffies;
  1553. out:
  1554. return timeout < 0 ? 0 : timeout;
  1555. }
  1556. EXPORT_SYMBOL(schedule_timeout);
  1557. /*
  1558. * We can use __set_current_state() here because schedule_timeout() calls
  1559. * schedule() unconditionally.
  1560. */
  1561. signed long __sched schedule_timeout_interruptible(signed long timeout)
  1562. {
  1563. __set_current_state(TASK_INTERRUPTIBLE);
  1564. return schedule_timeout(timeout);
  1565. }
  1566. EXPORT_SYMBOL(schedule_timeout_interruptible);
  1567. signed long __sched schedule_timeout_killable(signed long timeout)
  1568. {
  1569. __set_current_state(TASK_KILLABLE);
  1570. return schedule_timeout(timeout);
  1571. }
  1572. EXPORT_SYMBOL(schedule_timeout_killable);
  1573. signed long __sched schedule_timeout_uninterruptible(signed long timeout)
  1574. {
  1575. __set_current_state(TASK_UNINTERRUPTIBLE);
  1576. return schedule_timeout(timeout);
  1577. }
  1578. EXPORT_SYMBOL(schedule_timeout_uninterruptible);
  1579. /*
  1580. * Like schedule_timeout_uninterruptible(), except this task will not contribute
  1581. * to load average.
  1582. */
  1583. signed long __sched schedule_timeout_idle(signed long timeout)
  1584. {
  1585. __set_current_state(TASK_IDLE);
  1586. return schedule_timeout(timeout);
  1587. }
  1588. EXPORT_SYMBOL(schedule_timeout_idle);
  1589. #ifdef CONFIG_HOTPLUG_CPU
  1590. static void migrate_timer_list(struct timer_base *new_base, struct hlist_head *head)
  1591. {
  1592. struct timer_list *timer;
  1593. int cpu = new_base->cpu;
  1594. while (!hlist_empty(head)) {
  1595. timer = hlist_entry(head->first, struct timer_list, entry);
  1596. detach_timer(timer, false);
  1597. timer->flags = (timer->flags & ~TIMER_BASEMASK) | cpu;
  1598. internal_add_timer(new_base, timer);
  1599. }
  1600. }
  1601. int timers_dead_cpu(unsigned int cpu)
  1602. {
  1603. struct timer_base *old_base;
  1604. struct timer_base *new_base;
  1605. int b, i;
  1606. BUG_ON(cpu_online(cpu));
  1607. for (b = 0; b < NR_BASES; b++) {
  1608. old_base = per_cpu_ptr(&timer_bases[b], cpu);
  1609. new_base = get_cpu_ptr(&timer_bases[b]);
  1610. /*
  1611. * The caller is globally serialized and nobody else
  1612. * takes two locks at once, deadlock is not possible.
  1613. */
  1614. raw_spin_lock_irq(&new_base->lock);
  1615. raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
  1616. BUG_ON(old_base->running_timer);
  1617. for (i = 0; i < WHEEL_SIZE; i++)
  1618. migrate_timer_list(new_base, old_base->vectors + i);
  1619. raw_spin_unlock(&old_base->lock);
  1620. raw_spin_unlock_irq(&new_base->lock);
  1621. put_cpu_ptr(&timer_bases);
  1622. }
  1623. return 0;
  1624. }
  1625. #endif /* CONFIG_HOTPLUG_CPU */
  1626. static void __init init_timer_cpu(int cpu)
  1627. {
  1628. struct timer_base *base;
  1629. int i;
  1630. for (i = 0; i < NR_BASES; i++) {
  1631. base = per_cpu_ptr(&timer_bases[i], cpu);
  1632. base->cpu = cpu;
  1633. raw_spin_lock_init(&base->lock);
  1634. base->clk = jiffies;
  1635. }
  1636. }
  1637. static void __init init_timer_cpus(void)
  1638. {
  1639. int cpu;
  1640. for_each_possible_cpu(cpu)
  1641. init_timer_cpu(cpu);
  1642. }
  1643. void __init init_timers(void)
  1644. {
  1645. init_timer_cpus();
  1646. open_softirq(TIMER_SOFTIRQ, run_timer_softirq);
  1647. }
  1648. /**
  1649. * msleep - sleep safely even with waitqueue interruptions
  1650. * @msecs: Time in milliseconds to sleep for
  1651. */
  1652. void msleep(unsigned int msecs)
  1653. {
  1654. unsigned long timeout = msecs_to_jiffies(msecs) + 1;
  1655. while (timeout)
  1656. timeout = schedule_timeout_uninterruptible(timeout);
  1657. }
  1658. EXPORT_SYMBOL(msleep);
  1659. /**
  1660. * msleep_interruptible - sleep waiting for signals
  1661. * @msecs: Time in milliseconds to sleep for
  1662. */
  1663. unsigned long msleep_interruptible(unsigned int msecs)
  1664. {
  1665. unsigned long timeout = msecs_to_jiffies(msecs) + 1;
  1666. while (timeout && !signal_pending(current))
  1667. timeout = schedule_timeout_interruptible(timeout);
  1668. return jiffies_to_msecs(timeout);
  1669. }
  1670. EXPORT_SYMBOL(msleep_interruptible);
  1671. /**
  1672. * usleep_range - Sleep for an approximate time
  1673. * @min: Minimum time in usecs to sleep
  1674. * @max: Maximum time in usecs to sleep
  1675. *
  1676. * In non-atomic context where the exact wakeup time is flexible, use
  1677. * usleep_range() instead of udelay(). The sleep improves responsiveness
  1678. * by avoiding the CPU-hogging busy-wait of udelay(), and the range reduces
  1679. * power usage by allowing hrtimers to take advantage of an already-
  1680. * scheduled interrupt instead of scheduling a new one just for this sleep.
  1681. */
  1682. void __sched usleep_range(unsigned long min, unsigned long max)
  1683. {
  1684. ktime_t exp = ktime_add_us(ktime_get(), min);
  1685. u64 delta = (u64)(max - min) * NSEC_PER_USEC;
  1686. for (;;) {
  1687. __set_current_state(TASK_UNINTERRUPTIBLE);
  1688. /* Do not return before the requested sleep time has elapsed */
  1689. if (!schedule_hrtimeout_range(&exp, delta, HRTIMER_MODE_ABS))
  1690. break;
  1691. }
  1692. }
  1693. EXPORT_SYMBOL(usleep_range);