From owner-p4-projects@FreeBSD.ORG Thu May 1 18:52:38 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 18A42106567B; Thu, 1 May 2008 18:52:38 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDC951065670; Thu, 1 May 2008 18:52:37 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id AE6088FC24; Thu, 1 May 2008 18:52:37 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unknown [208.65.91.234]) by elvis.mu.org (Postfix) with ESMTP id 65D7C1A4D82; Thu, 1 May 2008 11:52:37 -0700 (PDT) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m41IqJWt025345; Thu, 1 May 2008 14:52:24 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Peter Wemm Date: Thu, 1 May 2008 14:51:59 -0400 User-Agent: KMail/1.9.7 References: <200805011828.m41ISEta041132@repoman.freebsd.org> In-Reply-To: <200805011828.m41ISEta041132@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200805011452.00114.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 01 May 2008 14:52:25 -0400 (EDT) X-Virus-Scanned: ClamAV 0.91.2/7007/Thu May 1 11:34:23 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Perforce Change Reviews Subject: Re: PERFORCE change 141000 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 May 2008 18:52:38 -0000 On Thursday 01 May 2008 02:28:14 pm Peter Wemm wrote: > http://perforce.freebsd.org/chv.cgi?CH=141000 > > Change 141000 by peter@peter_overcee on 2008/05/01 18:27:44 > > kdb_ddbe panic command is another y! thing. skip for now. It's only for this though. Basically lets the debugger backend map the panic request to whatever it wants. > Affected files ... > > .. //depot/projects/hammer/sys/kern/subr_kdb.c#23 edit > > Differences ... > > ==== //depot/projects/hammer/sys/kern/subr_kdb.c#23 (text+ko) ==== > > @@ -225,13 +225,11 @@ > kdb_panic(const char *msg) > { > > - if (kdb_dbbe != NULL && kdb_dbbe->dbbe_panic != NULL) { > #ifdef SMP > - stop_cpus(PCPU_GET(other_cpus)); > + stop_cpus(PCPU_GET(other_cpus)); > #endif > - printf("KDB: panic\n"); > - kdb_dbbe->dbbe_panic(msg); > - } > + printf("KDB: panic\n"); > + panic(msg); > } > > void > -- John Baldwin