From owner-cvs-all@FreeBSD.ORG Thu Jun 8 21:30:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 B106016C755; Thu, 8 Jun 2006 17:56:08 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 805BC43D48; Thu, 8 Jun 2006 17:56:08 +0000 (GMT) (envelope-from njl@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 k58HsA4B053078; Thu, 8 Jun 2006 17:54:10 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k58HsAHR053077; Thu, 8 Jun 2006 17:54:10 GMT (envelope-from njl) Message-Id: <200606081754.k58HsAHR053077@repoman.freebsd.org> From: Nate Lawson Date: Thu, 8 Jun 2006 17:54:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/acpica acpi_machdep.c acpi_wakecode.S acpi_wakeup.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 08 Jun 2006 21:30:43 -0000 njl 2006-06-08 17:54:10 UTC FreeBSD src repository Modified files: sys/i386/acpica acpi_machdep.c acpi_wakecode.S acpi_wakeup.c Log: Minor tweaks to the resume code that might help people debug. * Add hw.acpi.resume_beep tunable and sysctl, default to 0. Beeps the PC speaker soon after waking to diagnose whether the wakeup code is even getting run before other drivers possibly hang the system. To stop the beep, cause another beep (i.e. keyboard bell). Submitted by takawata@, I changed the frequency to be lower. * Use 4096 instead of 4 byte alignment. Might be useful although doesn't seem to be necessary. * Remove a useless assignment to acpi_reset_video. It was overwritten by the default sysctl value anyway. Revision Changes Path 1.31 +7 -1 src/sys/i386/acpica/acpi_machdep.c 1.11 +17 -4 src/sys/i386/acpica/acpi_wakecode.S 1.42 +2 -0 src/sys/i386/acpica/acpi_wakeup.c