From owner-cvs-src@FreeBSD.ORG Sun Sep 26 06:49:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27EC116A4CF; Sun, 26 Sep 2004 06:49:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0604D43D53; Sun, 26 Sep 2004 06:49:00 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8Q6mxCG089852; Sun, 26 Sep 2004 06:48:59 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8Q6mx0H089851; Sun, 26 Sep 2004 06:48:59 GMT (envelope-from marcel) Message-Id: <200409260648.i8Q6mx0H089851@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 26 Sep 2004 06:48:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_kdb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Sep 2004 06:49:00 -0000 marcel 2004-09-26 06:48:59 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c Log: Fix a bug introduced in the previous commit: kdb_cpu_trap() gets to the trapframe via kdb_frame, but kdb_frame was not initialized until after the call to kdb_cpu_trap(). Ergo: kdb_cpu_trap() was moved too far up. Pointy hat: marcel Revision Changes Path 1.8 +2 -1 src/sys/kern/subr_kdb.c