From owner-svn-src-head@FreeBSD.ORG Thu Dec 5 21:58:04 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03969B6D; Thu, 5 Dec 2013 21:58:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1EEB1F63; Thu, 5 Dec 2013 21:58:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5Lw3GO032805; Thu, 5 Dec 2013 21:58:03 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB5Lw3rD032794; Thu, 5 Dec 2013 21:58:03 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201312052158.rB5Lw3rD032794@svn.freebsd.org> From: John Baldwin Date: Thu, 5 Dec 2013 21:58:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r259015 - in head/sys: amd64/amd64 i386/i386 pc98/pc98 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 21:58:04 -0000 Author: jhb Date: Thu Dec 5 21:58:02 2013 New Revision: 259015 URL: http://svnweb.freebsd.org/changeset/base/259015 Log: Fix a typo. Modified: head/sys/amd64/amd64/machdep.c head/sys/i386/i386/machdep.c head/sys/pc98/pc98/machdep.c Modified: head/sys/amd64/amd64/machdep.c ============================================================================== --- head/sys/amd64/amd64/machdep.c Thu Dec 5 21:55:10 2013 (r259014) +++ head/sys/amd64/amd64/machdep.c Thu Dec 5 21:58:02 2013 (r259015) @@ -833,7 +833,7 @@ cpu_idle(int busy) /* Call main idle method. */ cpu_idle_fn(sbt); - /* Switch timers mack into active mode. */ + /* Switch timers back into active mode. */ if (!busy) { cpu_activeclock(); critical_exit(); Modified: head/sys/i386/i386/machdep.c ============================================================================== --- head/sys/i386/i386/machdep.c Thu Dec 5 21:55:10 2013 (r259014) +++ head/sys/i386/i386/machdep.c Thu Dec 5 21:58:02 2013 (r259015) @@ -1416,7 +1416,7 @@ cpu_idle(int busy) /* Call main idle method. */ cpu_idle_fn(sbt); - /* Switch timers mack into active mode. */ + /* Switch timers back into active mode. */ if (!busy) { cpu_activeclock(); critical_exit(); Modified: head/sys/pc98/pc98/machdep.c ============================================================================== --- head/sys/pc98/pc98/machdep.c Thu Dec 5 21:55:10 2013 (r259014) +++ head/sys/pc98/pc98/machdep.c Thu Dec 5 21:58:02 2013 (r259015) @@ -1228,7 +1228,7 @@ cpu_idle(int busy) /* Call main idle method. */ cpu_idle_fn(sbt); - /* Switch timers mack into active mode. */ + /* Switch timers back into active mode. */ if (!busy) { cpu_activeclock(); critical_exit();