From owner-svn-src-head@FreeBSD.ORG Wed Aug 7 08:03:52 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4B4559F1; Wed, 7 Aug 2013 08:03:52 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37F4021F9; Wed, 7 Aug 2013 08:03:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7783qXx095897; Wed, 7 Aug 2013 08:03:52 GMT (envelope-from avg@svn.freebsd.org) Received: (from avg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7783pCd095888; Wed, 7 Aug 2013 08:03:51 GMT (envelope-from avg@svn.freebsd.org) Message-Id: <201308070803.r7783pCd095888@svn.freebsd.org> From: Andriy Gapon Date: Wed, 7 Aug 2013 08:03:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r254051 - in head/sys: amd64/conf i386/conf ia64/conf powerpc/conf sparc64/conf X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Aug 2013 08:03:52 -0000 Author: avg Date: Wed Aug 7 08:03:50 2013 New Revision: 254051 URL: http://svnweb.freebsd.org/changeset/base/254051 Log: enable KDB_TRACE in GENERICs KDB_TRACE is not an alternative to DDB/etc, they are complementary. So I do not see any reason to not enable KDB_TRACE by default. X-MFC after: never (change specific to head) Modified: head/sys/amd64/conf/GENERIC head/sys/i386/conf/GENERIC head/sys/ia64/conf/GENERIC head/sys/powerpc/conf/GENERIC head/sys/sparc64/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ============================================================================== --- head/sys/amd64/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/amd64/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -75,7 +75,7 @@ options INCLUDE_CONFIG_FILE # Inclu # Debugging support. Always need this: options KDB # Enable kernel debugger support. # For minimum debugger support (stable branch) use: -#options KDB_TRACE # Print a stack trace for a panic. +options KDB_TRACE # Print a stack trace for a panic. # For full debugger support use this instead: options DDB # Support DDB. options GDB # Support remote GDB. Modified: head/sys/i386/conf/GENERIC ============================================================================== --- head/sys/i386/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/i386/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -75,7 +75,7 @@ options INCLUDE_CONFIG_FILE # Inclu # Debugging support. Always need this: options KDB # Enable kernel debugger support. # For minimum debugger support (stable branch) use: -#options KDB_TRACE # Print a stack trace for a panic. +options KDB_TRACE # Print a stack trace for a panic. # For full debugger support use this instead: options DDB # Support DDB. options GDB # Support remote GDB. Modified: head/sys/ia64/conf/GENERIC ============================================================================== --- head/sys/ia64/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/ia64/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -66,7 +66,7 @@ options _KPOSIX_PRIORITY_SCHEDULING # P # Debugging support. Always need this: options KDB # Enable kernel debugger support. # For minimum debugger support (stable branch) use: -#options KDB_TRACE # Print a stack trace for a panic. +options KDB_TRACE # Print a stack trace for a panic. # For full debugger support use this instead: options DDB # Support DDB options GDB # Support remote GDB Modified: head/sys/powerpc/conf/GENERIC ============================================================================== --- head/sys/powerpc/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/powerpc/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -77,7 +77,7 @@ options INCLUDE_CONFIG_FILE # Inclu # Debugging support. Always need this: options KDB # Enable kernel debugger support. # For minimum debugger support (stable branch) use: -#options KDB_TRACE # Print a stack trace for a panic. +options KDB_TRACE # Print a stack trace for a panic. # For full debugger support use this instead: options DDB #Support DDB #options DEADLKRES #Enable the deadlock resolver Modified: head/sys/sparc64/conf/GENERIC ============================================================================== --- head/sys/sparc64/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/sparc64/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -69,7 +69,7 @@ options INCLUDE_CONFIG_FILE # Include t # Debugging support. Always need this: options KDB # Enable kernel debugger support. # For minimum debugger support (stable branch) use: -#options KDB_TRACE # Print a stack trace for a panic. +options KDB_TRACE # Print a stack trace for a panic. # For full debugger support use this instead: options DDB # Support DDB. options GDB # Support remote GDB.