From owner-cvs-src@FreeBSD.ORG Fri Feb 27 11:30:46 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 BB78716A4CE; Fri, 27 Feb 2004 11:30:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B541343D31; Fri, 27 Feb 2004 11:30:46 -0800 (PST) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1RJUkGe038279; Fri, 27 Feb 2004 11:30:46 -0800 (PST) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1RJUkS4038278; Fri, 27 Feb 2004 11:30:46 -0800 (PST) (envelope-from kensmith) Message-Id: <200402271930.i1RJUkS4038278@repoman.freebsd.org> From: Ken Smith Date: Fri, 27 Feb 2004 11:30:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha machdep.c promcons.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: Fri, 27 Feb 2004 19:30:46 -0000 kensmith 2004/02/27 11:30:46 PST FreeBSD src repository Modified files: sys/alpha/alpha machdep.c promcons.c Log: Fix -current builds on alpha. Recent changes in device handling caused subtle problems with how alpha was handling the promcons device. This moves the call to make_dev() for the promcons device to a later point of the boot-up sequence than where promcons initially gets attached, make_dev() called during the first attach crashes due to kernel stack issues. Reviewed by: gallatin, marcel, phk Discussed on: -current@, -alpha@ Approved by: rwatson (mentor) Revision Changes Path 1.217 +11 -0 src/sys/alpha/alpha/machdep.c 1.35 +18 -2 src/sys/alpha/alpha/promcons.c