From owner-cvs-all@FreeBSD.ORG Sun Apr 6 14:31:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E6A837B401; Sun, 6 Apr 2003 14:31:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5068743FAF; Sun, 6 Apr 2003 14:31:27 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h36LVR0U079231; Sun, 6 Apr 2003 14:31:27 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h36LVRgr079230; Sun, 6 Apr 2003 14:31:27 -0700 (PDT) Message-Id: <200304062131.h36LVRgr079230@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 6 Apr 2003 14:31:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 exception.s locore.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 21:31:28 -0000 marcel 2003/04/06 14:31:26 PDT FreeBSD src repository Modified files: sys/ia64/ia64 exception.s locore.s Log: Remove the 32KB VHPT section from the kernel image. We don't really use it because we allocate a VHPT based on the size of the physical memory and even if the allocated VHPT is 32KB, we don't use the in- image section for it. Since the VHPT must be naturally aligned, we save 48K on average (due to alignment). Consequently, we start off with the VHPT disabled (it is assumed the VHPT is disabled because the EFI loader runs without memory address translation and thus has no need to setup the VHPT). It's probably a good idea to explicitly disable the VHPT if we make the use of the VHPT optional. Revision Changes Path 1.41 +0 -8 src/sys/ia64/ia64/exception.s 1.28 +2 -5 src/sys/ia64/ia64/locore.s