Re: [RFC][PATCH] detect & print stack overruns at oops time
- From: Eric Sandeen <sandeen@xxxxxxxxxx>
- Date: Fri, 31 Aug 2007 11:36:11 -0500
Randy Dunlap wrote:
On Fri, 31 Aug 2007 00:28:58 -0500 Eric Sandeen wrote:
Index: linux-2.6.22-rc4/arch/i386/mm/fault.c
===================================================================
--- linux-2.6.22-rc4.orig/arch/i386/mm/fault.c
+++ linux-2.6.22-rc4/arch/i386/mm/fault.c
@@ -543,6 +545,27 @@ no_context:
printk(KERN_ALERT "BUG: unable to handle kernel paging"
" request");
printk(" at virtual address %08lx\n",address);
+
+ overrun = (unsigned long)stackend - (unsigned long)(®s->esp);
+ if (overrun > 0) {
+ printk(KERN_ALERT "Thread overrunning stack by %d "
+ "bytes\n", overrun);
+ } else {
Hi,
Is there something that tells us what <Thread> is doing all of this
bad juju?
Sure, the rest of the oops report will.
-Eric
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- References:
- [RFC][PATCH] detect & print stack overruns at oops time
- From: Eric Sandeen
- Re: [RFC][PATCH] detect & print stack overruns at oops time
- From: Randy Dunlap
- [RFC][PATCH] detect & print stack overruns at oops time
- Prev by Date: Re: [PATCH] Increase lockdep MAX_LOCK_DEPTH
- Next by Date: Re: [11/36] Use page_cache_xxx in fs/buffer.c
- Previous by thread: Re: [RFC][PATCH] detect & print stack overruns at oops time
- Next by thread: Linux 2.6.22.6
- Index(es):