From owner-cvs-src@FreeBSD.ORG Fri May 14 09:52:41 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 92DFC16A4D1; Fri, 14 May 2004 09:52:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DAC243D48; Fri, 14 May 2004 09:52:41 -0700 (PDT) (envelope-from njl@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 i4EGqeGe048039; Fri, 14 May 2004 09:52:40 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i4EGqd8C048038; Fri, 14 May 2004 09:52:39 -0700 (PDT) (envelope-from njl) Message-Id: <200405141652.i4EGqd8C048038@repoman.freebsd.org> From: Nate Lawson Date: Fri, 14 May 2004 09:52:39 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/acpi/acpidump acpi_user.c acpidump.h 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, 14 May 2004 16:52:41 -0000 njl 2004/05/14 09:52:39 PDT FreeBSD src repository Modified files: usr.sbin/acpi/acpidump acpi_user.c acpidump.h Log: Instead of scanning the entire lower 1 MB of RAM, only scan locations where the RSD PTR can actually occur. According to section 5.2.2 of the ACPI spec, we only consider two regions for the base address: 1. EBDA (0x0 - 0x3FF) 2. High memory (0xE0000 - 0xFFFFF) I don't know whether this fixes any actual problems but is more correct. Revision Changes Path 1.8 +42 -29 src/usr.sbin/acpi/acpidump/acpi_user.c 1.14 +11 -0 src/usr.sbin/acpi/acpidump/acpidump.h