From owner-cvs-src-old@FreeBSD.ORG Mon Jul 26 19:53:27 2010 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 7B6B21065678 for ; Mon, 26 Jul 2010 19:53:27 +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 684A58FC16 for ; Mon, 26 Jul 2010 19:53:27 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o6QJrRSI099038 for ; Mon, 26 Jul 2010 19:53:27 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o6QJrRAr099037 for cvs-src-old@freebsd.org; Mon, 26 Jul 2010 19:53:27 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201007261953.o6QJrRAr099037@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Mon, 26 Jul 2010 19:53:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/acpica acpi_switch.S acpi_wakeup.c src/sys/amd64/amd64 cpu_switch.S genassym.c mp_machdep.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: Mon, 26 Jul 2010 19:53:27 -0000 jkim 2010-07-26 19:53:09 UTC FreeBSD src repository Modified files: sys/amd64/acpica acpi_switch.S acpi_wakeup.c sys/amd64/amd64 cpu_switch.S genassym.c mp_machdep.c Log: SVN rev 210514 on 2010-07-26 19:53:09Z by jkim Re-implement FPU suspend/resume for amd64. This removes superfluous uses of critical_enter(9) and critical_exit(9) by fpugetregs() and fpusetregs(). Also, we do not touch PCB flags any more. MFC after: 1 month Revision Changes Path 1.6 +15 -1 src/sys/amd64/acpica/acpi_switch.S 1.32 +0 -5 src/sys/amd64/acpica/acpi_wakeup.c 1.173 +7 -0 src/sys/amd64/amd64/cpu_switch.S 1.178 +1 -0 src/sys/amd64/amd64/genassym.c 1.320 +2 -5 src/sys/amd64/amd64/mp_machdep.c