Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Oct 2013 16:20:52 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257214 - head/sys/kern
Message-ID:  <201310271620.r9RGKqfb037351@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sun Oct 27 16:20:52 2013
New Revision: 257214
URL: http://svnweb.freebsd.org/changeset/base/257214

Log:
  When reentering kdb, typically due to a bug causing trap or assert in
  the code executed in the context of debugger, do not be ashamed to
  inform loudly about the re-entry.  Also, print the backtrace before
  obliterating current stack with longjmp, allowing the operator to see
  a place which caused the bug.
  
  The change should make it less mysterious debugging the ddb itself.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/kern/subr_kdb.c

Modified: head/sys/kern/subr_kdb.c
==============================================================================
--- head/sys/kern/subr_kdb.c	Sun Oct 27 16:18:48 2013	(r257213)
+++ head/sys/kern/subr_kdb.c	Sun Oct 27 16:20:52 2013	(r257214)
@@ -503,6 +503,8 @@ kdb_reenter(void)
 	if (!kdb_active || kdb_jmpbufp == NULL)
 		return;
 
+	printf("KDB: reentering\n");
+	kdb_backtrace();
 	longjmp(kdb_jmpbufp, 1);
 	/* NOTREACHED */
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310271620.r9RGKqfb037351>