From owner-svn-src-all@FreeBSD.ORG Thu Oct 8 18:59:30 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from [127.0.0.1] (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id D83261065676; Thu, 8 Oct 2009 18:59:30 +0000 (UTC) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: Attilio Rao Date: Thu, 8 Oct 2009 14:59:21 -0400 User-Agent: KMail/1.6.2 References: <200910081741.n98HfrI3028811@svn.freebsd.org> <3bbf2fe10910081122t2e23d1cep44846da4a7035227@mail.gmail.com> In-Reply-To: <3bbf2fe10910081122t2e23d1cep44846da4a7035227@mail.gmail.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200910081459.22441.jkim@FreeBSD.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r197863 - head/sys/amd64/acpica X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Oct 2009 18:59:31 -0000 2009/10/8 Jung-uk Kim : On Thursday 08 October 2009 02:22 pm, Attilio Rao wrote: > > void > > acpi_install_wakeup_handler(struct acpi_softc *sc) > > { > > + static void *wakeaddr = NULL; > > uint64_t *pt4, *pt3, *pt2; > > int i; > > Maybe it was better to have a non-reentrat function here? It won't re-enter here because we cannot detach ACPI bus ATM. It is just a safety belt for the distant(?) future. ;-) Jung-uk Kim