linux.kernel - 26 new messages in 11 topics - digest
linux.kernel
http://groups.google.com/group/linux.kernel?hl=en
linux.kernel@googlegroups.com
Today's topics:
* PATCH: UV/NMI/KGDB/KDB Fix UV NMI handler when KDB not configed. - 1
messages, 1 author
http://groups.google.com/group/linux.kernel/t/49c736b07b53b058?hl=en
* perf report: Add report.percentage config option - 6 messages, 1 author
http://groups.google.com/group/linux.kernel/t/a2b106be220a1f65?hl=en
* mm/zswap: Check all pool pages instead of one pool pages - 2 messages, 1
author
http://groups.google.com/group/linux.kernel/t/81cd07f00a212f3a?hl=en
* next bio iters break discard? - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/df8973f865430413?hl=en
* perf on raspberry-pi without overflow interrupt - 2 messages, 1 author
http://groups.google.com/group/linux.kernel/t/a41a2323b165e1d8?hl=en
* linux-next: manual merge of the tip tree with the net-next tree - 3 messages,
3 authors
http://groups.google.com/group/linux.kernel/t/ec246d2e3d0c7bcd?hl=en
* linux-next: manual merge of the akpm-current tree with the tip tree - 2
messages, 2 authors
http://groups.google.com/group/linux.kernel/t/dbed449ea85f37ac?hl=en
* linux-next: manual merge of the akpm-current tree with the char-misc tree -
1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/1cff4bcb8a419506?hl=en
* staging: ced1401: Fix dev_<level> messages - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/cf0ebd61b1e13adb?hl=en
* net_dma: revert 'copied_early' - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/f63a9d0143e0c240?hl=en
* perf tools: Enable --children option by default - 6 messages, 1 author
http://groups.google.com/group/linux.kernel/t/eb1147ab9c3d80ab?hl=en
==============================================================================
TOPIC: PATCH: UV/NMI/KGDB/KDB Fix UV NMI handler when KDB not configed.
http://groups.google.com/group/linux.kernel/t/49c736b07b53b058?hl=en
==============================================================================
== 1 of 1 ==
Date: Mon, Jan 13 2014 8:30 pm
From: Mike Travis
Fix UV call into kgdb to depend only on whether KGDB is defined and not
both KGDB and KDB. This allows the power nmi command to use the gdb
remote connection if enabled. Note new action of 'kgdb' needs to be set
as well to indicate user wants to wait for gdb to be connected. If it's
set to 'kdb' then an error message is displayed if KDB is not configured.
Note that if both KGDB and KDB are enabled, then the action of 'kgdb' or
'kdb' has no affect on which is used. See the KGDB documention for further
information.
Signed-off-by: Mike Travis <travis@sgi.com>
Reviewed-by: Hedi Berriche <hedi@sgi.com>
---
arch/x86/platform/uv/uv_nmi.c | 56 +++++++++++++++++++++++++++++++-----------
1 file changed, 42 insertions(+), 14 deletions(-)
--- linux.orig/arch/x86/platform/uv/uv_nmi.c
+++ linux/arch/x86/platform/uv/uv_nmi.c
@@ -148,7 +148,8 @@ module_param_named(retry_count, uv_nmi_r
* "dump" - dump process stack for each cpu
* "ips" - dump IP info for each cpu
* "kdump" - do crash dump
- * "kdb" - enter KDB/KGDB (default)
+ * "kdb" - enter KDB (default)
+ * "kgdb" - enter KGDB
*/
static char uv_nmi_action[8] = "kdb";
module_param_string(action, uv_nmi_action, sizeof(uv_nmi_action), 0644);
@@ -537,18 +538,45 @@ static inline void uv_nmi_kdump(int cpu,
}
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home