Seiji Aguchi
68412b1718
pstore: Avoid deadlock in panic and emergency-restart path
...
commit 9f244e9cfd upstream.
[Issue]
When pstore is in panic and emergency-restart paths, it may be blocked
in those paths because it simply takes spin_lock.
This is an example scenario which pstore may hang up in a panic path:
- cpuA grabs psinfo->buf_lock
- cpuB panics and calls smp_send_stop
- smp_send_stop sends IRQ to cpuA
- after 1 second, cpuB gives up on cpuA and sends an NMI instead
- cpuA is now in an NMI handler while still holding buf_lock
- cpuB is deadlocked
This case may happen if a firmware has a bug and
cpuA is stuck talking with it more than one second.
Also, this is a similar scenario in an emergency-restart path:
- cpuA grabs psinfo->buf_lock and stucks in a firmware
- cpuB kicks emergency-restart via either sysrq-b or hangcheck timer.
And then, cpuB is deadlocked by taking psinfo->buf_lock again.
[Solution]
This patch avoids the deadlocking issues in both panic and emergency_restart
paths by introducing a function, is_non_blocking_path(), to check if a cpu
can be blocked in current path.
With this patch, pstore is not blocked even if another cpu has
taken a spin_lock, in those paths by changing from spin_lock_irqsave
to spin_trylock_irqsave.
In addition, according to a comment of emergency_restart() in kernel/sys.c,
spin_lock shouldn't be taken in an emergency_restart path to avoid
deadlock. This patch fits the comment below.
<snip>
/**
* emergency_restart - reboot the system
*
* Without shutting down any hardware or taking any locks
* reboot the system. This is called when we know we are in
* trouble so this is our best effort to reboot. This is
* safe to call in interrupt context.
*/
void emergency_restart(void)
<snip>
Signed-off-by: Seiji Aguchi <seiji.aguchi@hds.com >
Acked-by: Don Zickus <dzickus@redhat.com >
Signed-off-by: Tony Luck <tony.luck@intel.com >
Cc: CAI Qian <caiqian@redhat.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2013-03-04 06:06:43 +08:00
..
2012-04-15 17:35:19 -07:00
2012-03-06 15:16:18 -05:00
2012-02-03 01:21:25 +01:00
2013-01-17 08:51:20 -08:00
2012-11-26 11:38:03 -08:00
2012-01-04 17:30:20 -02:00
2012-04-23 14:23:32 +03:00
2012-08-15 08:10:33 -07:00
2012-07-16 09:04:39 -07:00
2012-08-15 08:10:32 -07:00
2012-10-02 10:29:54 -07:00
2012-10-28 10:14:16 -07:00
2012-10-21 09:28:00 -07:00
2012-04-11 09:31:01 +02:00
2012-03-26 20:41:01 +04:00
2012-11-17 13:16:12 -08:00
2013-02-28 06:59:02 -08:00
2011-12-13 15:07:49 +00:00
2012-07-16 09:04:23 -07:00
2012-02-09 09:04:23 -08:00
2011-06-06 22:55:11 -07:00
2005-06-21 19:07:41 -07:00
2009-02-08 09:56:11 -08:00
2011-12-13 18:46:56 -05:00
2011-03-15 02:42:32 -04:00
2012-03-24 10:41:37 -07:00
2012-03-07 17:06:08 +11:00
2012-03-16 10:38:24 -04:00
2009-04-01 08:59:23 -07:00
2013-03-04 06:06:43 +08:00
2009-01-08 08:31:12 -08:00
2010-12-06 15:58:43 -05:00
2011-10-31 00:33:36 +08:00
2011-03-22 17:43:59 -07:00
2008-10-20 08:52:42 -07:00
2011-03-11 14:25:50 +00:00
2013-01-11 09:06:30 -08:00
2011-08-03 11:30:42 -04:00
2012-03-23 16:58:34 -07:00
2008-06-06 11:29:10 -07:00
2012-05-14 08:29:23 +02:00
2011-10-31 17:30:54 -07:00
2011-07-14 11:47:49 -07:00
2008-11-28 12:38:38 +01:00
2005-04-16 15:20:36 -07:00
2011-07-26 16:49:47 -07:00
2012-03-04 17:54:35 -05:00
2010-03-03 11:25:58 +01:00
2011-10-17 19:22:46 -04:00
2012-01-14 18:36:33 -08:00
2009-01-15 16:39:41 -08:00
2011-01-13 08:03:17 -08:00
2011-03-31 11:26:23 -03:00
2012-03-24 10:41:37 -07:00
2010-03-24 16:31:22 -07:00
2011-10-13 14:36:58 +01:00
2011-09-08 11:10:56 +02:00
2012-02-01 18:37:39 -08:00
2010-10-25 08:02:40 -07:00
2005-04-16 15:20:36 -07:00
2012-03-21 17:54:56 -07:00
2012-03-29 18:12:23 -07:00
2007-10-17 08:42:47 -07:00
2012-02-28 16:02:54 +01:00
2011-01-05 14:15:50 +01:00
2005-04-16 15:20:36 -07:00
2008-04-30 08:29:54 -07:00
2010-08-10 13:47:42 -07:00
2013-02-28 06:59:05 -08:00
2008-06-04 14:56:12 +01:00
2008-01-30 13:32:42 +01:00
2011-03-31 11:26:23 -03:00
2011-09-23 12:05:29 +05:30
2011-01-24 14:51:56 -08:00
2012-08-09 08:31:37 -07:00
2011-12-13 09:26:45 +00:00
2012-10-02 10:29:51 -07:00
2012-03-28 15:58:21 -07:00
2012-03-20 21:29:53 -04:00
2011-11-23 18:49:22 +01:00
2010-08-04 11:00:45 +02:00
2012-03-17 21:51:34 +01:00
2011-10-31 19:32:26 -04:00
2011-10-31 20:19:04 +00:00
2012-03-21 18:55:10 -07:00
2008-10-13 09:51:43 -07:00
2011-12-16 08:49:57 -08:00
2009-04-15 12:22:37 +02:00
2012-04-10 15:30:16 -07:00
2007-02-09 17:39:36 -05:00
2011-02-25 12:00:34 -08:00
2009-11-04 09:50:58 -08:00
2010-07-28 09:59:01 -04:00
2011-06-30 09:23:45 +02:00
2011-05-24 10:21:29 +02:00
2011-10-04 13:08:18 -07:00
2012-01-24 12:48:54 -08:00
2011-11-29 12:46:19 -05:00
2011-06-27 09:11:02 -04:00
2009-01-30 23:46:40 +05:30
2013-02-14 10:48:53 -08:00
2012-02-08 09:19:42 +01:00
2012-03-04 17:54:34 -05:00
2008-01-28 23:21:18 +01:00
2011-03-22 17:44:11 -07:00
2012-03-08 11:53:13 -08:00
2011-12-11 18:25:16 -05:00
2012-05-07 19:21:29 -04:00
2012-04-06 02:43:12 -04:00
2011-09-14 15:24:51 -04:00
2011-10-31 09:20:11 -04:00
2011-03-31 11:26:23 -03:00
2011-01-12 20:16:43 -05:00
2012-03-24 10:41:37 -07:00
2005-04-16 15:20:36 -07:00
2011-07-07 08:18:18 +02:00
2012-02-19 10:30:57 -08:00
2011-01-09 15:42:55 -08:00
2009-12-03 12:14:36 -08:00
2012-03-20 21:29:32 -04:00
2011-10-19 19:35:51 -04:00
2009-06-18 19:50:21 +08:00
2012-03-18 22:15:39 +01:00
2012-04-02 14:41:27 -07:00
2011-01-10 08:51:44 -08:00
2011-10-31 19:32:32 -04:00
2005-04-16 15:20:36 -07:00
2011-05-26 17:12:33 -07:00
2013-01-11 09:06:58 -08:00
2009-12-17 10:58:17 -05:00
2012-05-11 16:42:14 +02:00
2011-07-08 00:21:27 -05:00
2012-05-10 15:55:43 -04:00
2012-04-12 12:57:08 +02:00
2009-06-18 13:04:05 -07:00
2011-08-03 11:15:57 -04:00
2011-07-25 14:30:23 -04:00
2009-01-02 10:19:38 -08:00
2012-05-15 08:22:04 +02:00
2006-09-30 01:47:55 +02:00
2011-08-17 13:00:20 -07:00
2009-06-26 10:48:34 +02:00
2012-01-09 11:24:59 +01:00
2006-04-26 12:56:16 +01:00
2012-07-19 08:59:00 -07:00
2012-03-16 13:36:04 -07:00
2012-03-26 21:47:19 +02:00
2007-01-30 08:26:45 -08:00
2012-03-28 15:58:21 -07:00
2011-12-05 18:27:56 -05:00
2013-02-28 06:59:06 -08:00
2008-08-02 18:36:10 +01:00
2008-07-09 12:09:28 -04:00
2012-03-16 23:00:20 -07:00
2012-10-02 10:30:35 -07:00
2012-01-13 09:32:18 +10:30
2011-01-31 21:17:41 -08:00
2012-03-09 10:56:35 -08:00
2012-03-28 18:30:03 +01:00
2010-07-09 11:42:03 -07:00
2012-02-15 09:45:53 +01:00
2010-11-25 10:42:59 +09:00
2007-04-25 22:25:31 -07:00
2012-01-03 22:55:17 -05:00
2009-04-21 13:41:48 -07:00
2012-03-16 10:38:24 -04:00
2012-02-13 00:46:41 -05:00
2012-08-15 08:10:29 -07:00
2007-09-16 21:13:58 -07:00
2012-08-26 15:00:42 -07:00
2012-07-19 08:59:00 -07:00
2011-10-31 17:30:54 -07:00
2007-07-31 15:39:40 -07:00
2007-04-04 21:12:47 -07:00
2011-12-06 09:06:38 +01:00
2012-06-10 00:36:11 +09:00
2012-03-31 13:34:04 -07:00
2010-02-16 16:01:21 -08:00
2011-11-17 09:35:32 +11:00
2011-03-08 11:17:22 +11:00
2007-05-17 05:23:04 -07:00
2012-03-28 23:30:28 +02:00
2012-03-05 15:49:42 -08:00
2010-03-15 15:29:39 +01:00
2011-06-12 17:45:41 -04:00
2012-10-02 10:29:55 -07:00
2012-01-17 15:40:51 -08:00
2012-10-02 10:30:40 -07:00
2012-10-02 10:30:36 -07:00
2011-09-16 19:20:20 -04:00
2012-06-17 11:21:29 -07:00
2009-09-17 23:23:45 -07:00
2007-07-17 10:23:03 -07:00
2009-06-16 19:47:57 -07:00
2010-01-12 21:02:00 -08:00
2011-05-19 14:15:29 -07:00
2011-08-26 12:02:50 -04:00
2011-12-12 22:06:55 -08:00
2011-11-04 17:22:14 -07:00
2008-02-06 10:41:01 -08:00
2011-05-24 10:01:37 +02:00
2012-03-23 16:58:31 -07:00
2008-12-29 04:59:31 -08:00
2012-03-16 10:38:24 -04:00
2012-03-15 21:41:34 +01:00
2011-01-10 19:04:08 +01:00
2007-05-09 12:30:49 -07:00
2012-10-31 10:02:56 -07:00
2012-03-04 17:54:34 -05:00
2012-10-02 10:30:05 -07:00
2012-12-17 10:37:42 -08:00
2009-09-22 07:17:35 -07:00
2012-01-13 10:12:23 -08:00
2012-01-12 20:13:10 -08:00
2012-07-16 09:03:49 -07:00
2012-08-09 08:31:29 -07:00
2010-08-09 20:44:58 -07:00
2013-02-28 06:59:00 -08:00
2012-07-16 09:04:44 -07:00
2012-03-27 16:30:09 -07:00
2012-03-26 12:50:52 +10:30
2011-07-24 22:06:04 +09:30
2012-06-17 11:21:23 -07:00
2012-01-03 22:57:12 -05:00
2009-04-01 07:38:54 -04:00
2012-02-02 00:23:14 +11:00
2006-11-30 04:40:22 +01:00
2008-06-06 11:29:12 -07:00
2012-03-27 08:26:34 +01:00
2008-02-13 16:21:18 -08:00
2011-07-26 16:49:47 -07:00
2012-08-09 08:31:30 -07:00
2012-02-24 01:42:07 -08:00
2012-10-02 10:29:37 -07:00
2012-02-24 10:05:59 +01:00
2012-10-28 10:14:15 -07:00
2011-07-03 20:02:07 -07:00
2011-08-26 12:02:50 -04:00
2012-03-06 15:16:19 -05:00
2012-10-02 10:30:19 -07:00
2011-12-21 14:48:43 -08:00
2011-07-25 20:57:15 -07:00
2011-07-20 01:44:07 -04:00
2012-03-24 10:41:37 -07:00
2012-03-28 14:41:36 -07:00
2012-03-21 17:54:58 -07:00
2011-12-03 09:35:17 -08:00
2012-03-14 17:25:56 +08:00
2012-01-10 16:30:42 -08:00
2013-01-11 09:06:48 -08:00
2012-01-12 20:13:10 -08:00
2008-10-13 10:10:37 -07:00
2011-12-13 15:07:49 +00:00
2011-01-16 13:47:07 -05:00
2011-10-31 19:32:32 -04:00
2013-01-11 09:07:16 -08:00
2012-07-16 09:04:39 -07:00
2012-03-04 09:34:15 -08:00
2012-10-02 10:29:54 -07:00
2005-04-16 15:20:36 -07:00
2009-01-15 16:39:41 -08:00
2012-03-16 10:38:24 -04:00
2011-05-26 17:12:37 -07:00
2012-04-29 13:12:42 -07:00
2012-01-08 13:10:57 -08:00
2011-12-01 21:46:42 +01:00
2012-03-16 21:49:24 +01:00
2012-03-23 16:58:38 -07:00
2012-08-09 08:31:39 -07:00
2012-03-04 20:41:38 -05:00
2011-01-13 08:03:21 -08:00
2011-01-13 08:03:21 -08:00
2012-03-23 16:58:32 -07:00
2012-03-01 10:28:04 +01:00
2011-03-31 11:26:23 -03:00
2008-10-23 08:55:01 -07:00
2013-03-04 06:06:43 +08:00
2011-09-29 00:32:03 -04:00
2011-05-23 13:01:00 -07:00
2013-03-04 06:06:37 +08:00
2012-06-10 00:36:17 +09:00
2010-02-08 18:19:41 -06:00
2011-07-26 16:49:46 -07:00
2012-08-15 08:10:29 -07:00
2010-09-08 18:16:55 -07:00
2012-03-24 10:41:37 -07:00
2012-03-16 10:38:24 -04:00
2012-02-22 15:50:28 -05:00
2011-04-14 16:06:56 -07:00
2012-03-21 17:54:57 -07:00
2011-05-12 08:28:47 -07:00
2012-07-16 09:03:52 -07:00
2007-05-02 11:56:33 +01:00
2012-03-15 18:23:10 -07:00
2011-07-08 14:02:53 +02:00
2012-02-21 16:56:45 -05:00
2009-09-15 02:44:17 -07:00
2013-01-27 20:47:43 -08:00
2011-06-07 10:02:35 +02:00
2009-10-30 08:27:25 +11:00
2012-03-21 13:25:04 -07:00
2010-10-22 10:20:06 -07:00
2012-03-24 10:08:39 -07:00
2012-05-04 15:13:54 -07:00
2008-02-07 08:42:34 -08:00
2012-04-09 10:38:30 -07:00
2012-03-08 11:38:50 -08:00
2010-10-31 10:40:39 -04:00
2011-12-09 07:50:27 -08:00
2012-07-16 09:03:48 -07:00
2013-01-11 09:07:15 -08:00
2012-04-05 19:04:27 -04:00
2009-12-14 23:55:33 +01:00
2012-03-28 15:58:21 -07:00
2012-07-16 09:04:42 -07:00
2012-02-21 09:06:09 -08:00
2008-05-26 16:15:32 +02:00
2011-06-14 22:48:51 -04:00
2006-12-07 02:14:08 +01:00
2010-08-09 16:48:44 -04:00
2012-04-14 07:47:49 -07:00
2012-03-28 18:30:03 +01:00
2008-10-03 11:46:14 -05:00
2011-10-31 17:30:47 -07:00
2009-04-10 15:48:52 +02:00
2012-06-22 11:36:55 -07:00
2012-02-10 11:42:25 -08:00
2012-03-04 17:54:34 -05:00
2011-03-15 00:43:46 +01:00
2012-01-24 16:40:30 -08:00
2012-01-03 22:54:56 -05:00
2012-02-20 12:48:47 -08:00
2013-02-21 10:04:57 -08:00
2010-08-11 08:59:22 -07:00
2010-12-22 19:43:34 -08:00
2012-03-13 14:06:33 -04:00
2008-10-13 09:51:40 -07:00
2011-05-23 13:59:54 +02:00
2010-05-27 09:12:51 -07:00
2011-12-11 10:31:57 -08:00
2012-10-02 10:30:36 -07:00
2010-10-22 14:46:25 +02:00
2011-05-23 13:59:53 +02:00
2011-04-26 14:01:42 -07:00
2011-05-10 16:03:56 -04:00
2010-11-29 08:55:25 +11:00
2011-09-19 11:35:58 -04:00
2012-03-20 21:29:40 -04:00
2012-03-23 16:58:40 -07:00
2012-03-08 11:38:51 -08:00
2012-03-28 18:30:03 +01:00
2008-07-25 10:53:26 -07:00
2012-04-10 22:39:17 -06:00
2011-05-25 19:56:23 -04:00
2011-10-12 21:13:11 -07:00
2012-08-26 15:00:43 -07:00
2009-11-29 22:03:04 +01:00
2005-04-16 15:20:36 -07:00
2011-06-15 20:04:00 -07:00
2011-11-02 16:07:02 -07:00
2011-03-22 04:53:33 -03:00
2012-03-19 15:33:24 -03:00
2011-05-30 11:14:14 +09:30
2011-12-05 23:27:59 +00:00
2011-07-26 16:49:47 -07:00
2013-02-28 06:59:05 -08:00
2012-03-28 18:30:03 +01:00
2010-10-13 15:45:21 -04:00
2012-03-02 10:51:00 +01:00
2012-03-07 16:08:46 +01:00
2012-10-13 05:38:41 +09:00
2011-03-22 17:44:17 -07:00