softlockup.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /*
  2. * Detect Soft Lockups
  3. *
  4. * started by Ingo Molnar, Copyright (C) 2005, 2006 Red Hat, Inc.
  5. *
  6. * this code detects soft lockups: incidents in where on a CPU
  7. * the kernel does not reschedule for 10 seconds or more.
  8. */
  9. #include <linux/mm.h>
  10. #include <linux/cpu.h>
  11. #include <linux/nmi.h>
  12. #include <linux/init.h>
  13. #include <linux/delay.h>
  14. #include <linux/freezer.h>
  15. #include <linux/kthread.h>
  16. #include <linux/notifier.h>
  17. #include <linux/module.h>
  18. #include <asm/irq_regs.h>
  19. static DEFINE_SPINLOCK(print_lock);
  20. static DEFINE_PER_CPU(unsigned long, touch_timestamp);
  21. static DEFINE_PER_CPU(unsigned long, print_timestamp);
  22. static DEFINE_PER_CPU(struct task_struct *, watchdog_task);
  23. static int __read_mostly did_panic;
  24. unsigned long __read_mostly softlockup_thresh = 60;
  25. static int
  26. softlock_panic(struct notifier_block *this, unsigned long event, void *ptr)
  27. {
  28. did_panic = 1;
  29. return NOTIFY_DONE;
  30. }
  31. static struct notifier_block panic_block = {
  32. .notifier_call = softlock_panic,
  33. };
  34. /*
  35. * Returns seconds, approximately. We don't need nanosecond
  36. * resolution, and we don't need to waste time with a big divide when
  37. * 2^30ns == 1.074s.
  38. */
  39. static unsigned long get_timestamp(int this_cpu)
  40. {
  41. return cpu_clock(this_cpu) >> 30LL; /* 2^30 ~= 10^9 */
  42. }
  43. static void __touch_softlockup_watchdog(void)
  44. {
  45. int this_cpu = raw_smp_processor_id();
  46. __raw_get_cpu_var(touch_timestamp) = get_timestamp(this_cpu);
  47. }
  48. void touch_softlockup_watchdog(void)
  49. {
  50. __raw_get_cpu_var(touch_timestamp) = 0;
  51. }
  52. EXPORT_SYMBOL(touch_softlockup_watchdog);
  53. void touch_all_softlockup_watchdogs(void)
  54. {
  55. int cpu;
  56. /* Cause each CPU to re-update its timestamp rather than complain */
  57. for_each_online_cpu(cpu)
  58. per_cpu(touch_timestamp, cpu) = 0;
  59. }
  60. EXPORT_SYMBOL(touch_all_softlockup_watchdogs);
  61. /*
  62. * This callback runs from the timer interrupt, and checks
  63. * whether the watchdog thread has hung or not:
  64. */
  65. void softlockup_tick(void)
  66. {
  67. int this_cpu = smp_processor_id();
  68. unsigned long touch_timestamp = per_cpu(touch_timestamp, this_cpu);
  69. unsigned long print_timestamp;
  70. struct pt_regs *regs = get_irq_regs();
  71. unsigned long now;
  72. if (touch_timestamp == 0) {
  73. __touch_softlockup_watchdog();
  74. return;
  75. }
  76. print_timestamp = per_cpu(print_timestamp, this_cpu);
  77. /* report at most once a second */
  78. if ((print_timestamp >= touch_timestamp &&
  79. print_timestamp < (touch_timestamp + 1)) ||
  80. did_panic || !per_cpu(watchdog_task, this_cpu)) {
  81. return;
  82. }
  83. /* do not print during early bootup: */
  84. if (unlikely(system_state != SYSTEM_RUNNING)) {
  85. __touch_softlockup_watchdog();
  86. return;
  87. }
  88. now = get_timestamp(this_cpu);
  89. /* Wake up the high-prio watchdog task every second: */
  90. if (now > (touch_timestamp + 1))
  91. wake_up_process(per_cpu(watchdog_task, this_cpu));
  92. /* Warn about unreasonable delays: */
  93. if (now <= (touch_timestamp + softlockup_thresh))
  94. return;
  95. per_cpu(print_timestamp, this_cpu) = touch_timestamp;
  96. spin_lock(&print_lock);
  97. printk(KERN_ERR "BUG: soft lockup - CPU#%d stuck for %lus! [%s:%d]\n",
  98. this_cpu, now - touch_timestamp,
  99. current->comm, task_pid_nr(current));
  100. print_modules();
  101. if (regs)
  102. show_regs(regs);
  103. else
  104. dump_stack();
  105. spin_unlock(&print_lock);
  106. }
  107. /*
  108. * Have a reasonable limit on the number of tasks checked:
  109. */
  110. unsigned long __read_mostly sysctl_hung_task_check_count = 1024;
  111. /*
  112. * Zero means infinite timeout - no checking done:
  113. */
  114. unsigned long __read_mostly sysctl_hung_task_timeout_secs = 120;
  115. unsigned long __read_mostly sysctl_hung_task_warnings = 10;
  116. /*
  117. * Only do the hung-tasks check on one CPU:
  118. */
  119. static int check_cpu __read_mostly = -1;
  120. static void check_hung_task(struct task_struct *t, unsigned long now)
  121. {
  122. unsigned long switch_count = t->nvcsw + t->nivcsw;
  123. if (t->flags & PF_FROZEN)
  124. return;
  125. if (switch_count != t->last_switch_count || !t->last_switch_timestamp) {
  126. t->last_switch_count = switch_count;
  127. t->last_switch_timestamp = now;
  128. return;
  129. }
  130. if ((long)(now - t->last_switch_timestamp) <
  131. sysctl_hung_task_timeout_secs)
  132. return;
  133. if (sysctl_hung_task_warnings < 0)
  134. return;
  135. sysctl_hung_task_warnings--;
  136. /*
  137. * Ok, the task did not get scheduled for more than 2 minutes,
  138. * complain:
  139. */
  140. printk(KERN_ERR "INFO: task %s:%d blocked for more than "
  141. "%ld seconds.\n", t->comm, t->pid,
  142. sysctl_hung_task_timeout_secs);
  143. printk(KERN_ERR "\"echo 0 > /proc/sys/kernel/hung_task_timeout_secs\""
  144. " disables this message.\n");
  145. sched_show_task(t);
  146. __debug_show_held_locks(t);
  147. t->last_switch_timestamp = now;
  148. touch_nmi_watchdog();
  149. }
  150. /*
  151. * Check whether a TASK_UNINTERRUPTIBLE does not get woken up for
  152. * a really long time (120 seconds). If that happens, print out
  153. * a warning.
  154. */
  155. static void check_hung_uninterruptible_tasks(int this_cpu)
  156. {
  157. int max_count = sysctl_hung_task_check_count;
  158. unsigned long now = get_timestamp(this_cpu);
  159. struct task_struct *g, *t;
  160. /*
  161. * If the system crashed already then all bets are off,
  162. * do not report extra hung tasks:
  163. */
  164. if ((tainted & TAINT_DIE) || did_panic)
  165. return;
  166. read_lock(&tasklist_lock);
  167. do_each_thread(g, t) {
  168. if (!--max_count)
  169. goto unlock;
  170. if (t->state & TASK_UNINTERRUPTIBLE)
  171. check_hung_task(t, now);
  172. } while_each_thread(g, t);
  173. unlock:
  174. read_unlock(&tasklist_lock);
  175. }
  176. /*
  177. * The watchdog thread - runs every second and touches the timestamp.
  178. */
  179. static int watchdog(void *__bind_cpu)
  180. {
  181. struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
  182. int this_cpu = (long)__bind_cpu;
  183. sched_setscheduler(current, SCHED_FIFO, &param);
  184. /* initialize timestamp */
  185. __touch_softlockup_watchdog();
  186. set_current_state(TASK_INTERRUPTIBLE);
  187. /*
  188. * Run briefly once per second to reset the softlockup timestamp.
  189. * If this gets delayed for more than 60 seconds then the
  190. * debug-printout triggers in softlockup_tick().
  191. */
  192. while (!kthread_should_stop()) {
  193. __touch_softlockup_watchdog();
  194. schedule();
  195. if (kthread_should_stop())
  196. break;
  197. if (this_cpu == check_cpu) {
  198. if (sysctl_hung_task_timeout_secs)
  199. check_hung_uninterruptible_tasks(this_cpu);
  200. }
  201. set_current_state(TASK_INTERRUPTIBLE);
  202. }
  203. __set_current_state(TASK_RUNNING);
  204. return 0;
  205. }
  206. /*
  207. * Create/destroy watchdog threads as CPUs come and go:
  208. */
  209. static int __cpuinit
  210. cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
  211. {
  212. int hotcpu = (unsigned long)hcpu;
  213. struct task_struct *p;
  214. switch (action) {
  215. case CPU_UP_PREPARE:
  216. case CPU_UP_PREPARE_FROZEN:
  217. BUG_ON(per_cpu(watchdog_task, hotcpu));
  218. p = kthread_create(watchdog, hcpu, "watchdog/%d", hotcpu);
  219. if (IS_ERR(p)) {
  220. printk(KERN_ERR "watchdog for %i failed\n", hotcpu);
  221. return NOTIFY_BAD;
  222. }
  223. per_cpu(touch_timestamp, hotcpu) = 0;
  224. per_cpu(watchdog_task, hotcpu) = p;
  225. kthread_bind(p, hotcpu);
  226. break;
  227. case CPU_ONLINE:
  228. case CPU_ONLINE_FROZEN:
  229. check_cpu = any_online_cpu(cpu_online_map);
  230. wake_up_process(per_cpu(watchdog_task, hotcpu));
  231. break;
  232. #ifdef CONFIG_HOTPLUG_CPU
  233. case CPU_DOWN_PREPARE:
  234. case CPU_DOWN_PREPARE_FROZEN:
  235. if (hotcpu == check_cpu) {
  236. cpumask_t temp_cpu_online_map = cpu_online_map;
  237. cpu_clear(hotcpu, temp_cpu_online_map);
  238. check_cpu = any_online_cpu(temp_cpu_online_map);
  239. }
  240. break;
  241. case CPU_UP_CANCELED:
  242. case CPU_UP_CANCELED_FROZEN:
  243. if (!per_cpu(watchdog_task, hotcpu))
  244. break;
  245. /* Unbind so it can run. Fall thru. */
  246. kthread_bind(per_cpu(watchdog_task, hotcpu),
  247. any_online_cpu(cpu_online_map));
  248. case CPU_DEAD:
  249. case CPU_DEAD_FROZEN:
  250. p = per_cpu(watchdog_task, hotcpu);
  251. per_cpu(watchdog_task, hotcpu) = NULL;
  252. kthread_stop(p);
  253. break;
  254. #endif /* CONFIG_HOTPLUG_CPU */
  255. }
  256. return NOTIFY_OK;
  257. }
  258. static struct notifier_block __cpuinitdata cpu_nfb = {
  259. .notifier_call = cpu_callback
  260. };
  261. __init void spawn_softlockup_task(void)
  262. {
  263. void *cpu = (void *)(long)smp_processor_id();
  264. int err = cpu_callback(&cpu_nfb, CPU_UP_PREPARE, cpu);
  265. BUG_ON(err == NOTIFY_BAD);
  266. cpu_callback(&cpu_nfb, CPU_ONLINE, cpu);
  267. register_cpu_notifier(&cpu_nfb);
  268. atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
  269. }