* [patch] i386: print NUMA in oops messages
@ 2006-06-06 3:01 Chuck Ebbert
2006-06-06 4:18 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Chuck Ebbert @ 2006-06-06 3:01 UTC (permalink / raw)
To: linux-kernel; +Cc: Andrew Morton, Linus Torvalds
Print "NUMA" in oops messages if it is configured, since it makes a big
difference now that NUMA-aware code is common in the kernel. "SMP"
could be removed since all NUMA machines are SMP, but it's probably
better to be backwards-compatible.
Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
---
Applies after previous patch that added stack size printout.
arch/i386/kernel/traps.c | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
--- 2.6.17-rc5-32.orig/arch/i386/kernel/traps.c
+++ 2.6.17-rc5-32/arch/i386/kernel/traps.c
@@ -368,16 +368,21 @@ void die(const char * str, struct pt_reg
handle_BUG(regs);
printk(KERN_EMERG "%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
printk(KERN_EMERG "%dK_STACKS ", THREAD_SIZE / 1024);
+ printk(
#ifdef CONFIG_PREEMPT
- printk("PREEMPT ");
+ "PREEMPT "
#endif
#ifdef CONFIG_SMP
- printk("SMP ");
+ "SMP "
+#endif
+#ifdef CONFIG_NUMA
+ "NUMA "
#endif
#ifdef CONFIG_DEBUG_PAGEALLOC
- printk("DEBUG_PAGEALLOC");
+ "DEBUG_PAGEALLOC"
#endif
- printk("\n");
+ "\n");
+
if (notify_die(DIE_OOPS, str, regs, err,
current->thread.trap_no, SIGSEGV) !=
NOTIFY_STOP) {
--
Chuck
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [patch] i386: print NUMA in oops messages
2006-06-06 3:01 [patch] i386: print NUMA in oops messages Chuck Ebbert
@ 2006-06-06 4:18 ` Andrew Morton
2006-06-06 4:54 ` Arjan van de Ven
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2006-06-06 4:18 UTC (permalink / raw)
To: Chuck Ebbert; +Cc: linux-kernel, torvalds
On Mon, 5 Jun 2006 23:01:14 -0400
Chuck Ebbert <76306.1226@compuserve.com> wrote:
> + printk(
> #ifdef CONFIG_PREEMPT
> - printk("PREEMPT ");
> + "PREEMPT "
> #endif
> #ifdef CONFIG_SMP
> - printk("SMP ");
> + "SMP "
> +#endif
> +#ifdef CONFIG_NUMA
> + "NUMA "
> #endif
> #ifdef CONFIG_DEBUG_PAGEALLOC
> - printk("DEBUG_PAGEALLOC");
> + "DEBUG_PAGEALLOC"
> #endif
> - printk("\n");
> + "\n");
> +
This is too cute for my taste. Keep it simple.
I suppose one could do something like
static const char config_string[] = ""
#ifdef CONFIG_SMP
" SMP"
#endif
#ifdef CONFIG_NUMA
" NUMA"
#endif
;
if one really feels so motivated...
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-06-06 4:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-06 3:01 [patch] i386: print NUMA in oops messages Chuck Ebbert
2006-06-06 4:18 ` Andrew Morton
2006-06-06 4:54 ` Arjan van de Ven
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®