From owner-cvs-src-old@FreeBSD.ORG Thu Oct 8 17:42:09 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 678701065739 for ; Thu, 8 Oct 2009 17:42:09 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DDB438FC17 for ; Thu, 8 Oct 2009 17:42:06 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n98Hg65f097670 for ; Thu, 8 Oct 2009 17:42:06 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n98Hg6Er097669 for cvs-src-old@freebsd.org; Thu, 8 Oct 2009 17:42:06 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <200910081742.n98Hg6Er097669@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Thu, 8 Oct 2009 17:41:53 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/acpica acpi_machdep.c acpi_wakecode.S acpi_wakeup.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Oct 2009 17:42:09 -0000 jkim 2009-10-08 17:41:53 UTC FreeBSD src repository Modified files: sys/amd64/acpica acpi_machdep.c acpi_wakecode.S acpi_wakeup.c Log: SVN rev 197863 on 2009-10-08 17:41:53Z by jkim Clean up amd64 suspend/resume code. - Allocate memory for wakeup code after ACPI bus is attached. The early memory allocation hack was inherited from i386 but amd64 does not need it. - Exclude real mode IVT and BDA explicitly. Improve comments about memory allocation and reason for the exclusions. It is a no-op in reality, though. - Remove an unnecessary CLD from wakeup code and re-align. Revision Changes Path 1.24 +10 -3 src/sys/amd64/acpica/acpi_machdep.c 1.4 +3 -3 src/sys/amd64/acpica/acpi_wakecode.S 1.27 +22 -27 src/sys/amd64/acpica/acpi_wakeup.c