softlockup.c 8.4 KB

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