From owner-cvs-src@FreeBSD.ORG Sun May 28 11:16:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 7B64716A855; Sun, 28 May 2006 11:16:25 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 104F343D53; Sun, 28 May 2006 11:16:25 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k4SBFGdO018167; Sun, 28 May 2006 11:15:16 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k4SBFGCk018166; Sun, 28 May 2006 11:15:16 GMT (envelope-from wilko) Message-Id: <200605281115.k4SBFGCk018166@repoman.freebsd.org> From: Wilko Bulte Date: Sun, 28 May 2006 11:15:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/alpha/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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, 28 May 2006 11:16:27 -0000 wilko 2006-05-28 11:15:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/alpha/conf GENERIC Log: Remove GEOM_GPT. I encountered repeatable Unaligned access panics similar to: fatal kernel trap: trap entry = 0x4 (unaligned access fault) cpuid = 0 faulting va = 0xfffffc0000fae1c2 opcode = 0x28 register = 0x1 pc = 0xfffffc00004d07dc ra = 0xfffffc00004d0a1c sp = 0xfffffe0031875bc0 curthread = 0xfffffc007da237a0 pid = 2, comm = g_event These occur when a floppy or a CD (the 6.1R install CD will do in most cases) is in the drive during boot. A floppy or CD inserted *after* the system was booted did not give me this problem. Interestingly enough booting from the 6.1-R install CD sometimes caused the crash, sometimes it did not. When it did not panic an installation of 6.1-R was possible without any incidents. A subsequent boot from HD with the CD still present sometimes(...) worked fine, sometimes paniced. Taking GEOM_GPT out of the kernel config file allows booting without incidents. We do not need GPT on Alpha, so this is the easy way out. Discussed with: phk Revision Changes Path 1.186.2.4 +0 -1 src/sys/alpha/conf/GENERIC