From owner-svn-src-all@FreeBSD.ORG Tue Aug 10 18:29:39 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72C241065672; Tue, 10 Aug 2010 18:29:39 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 61F208FC18; Tue, 10 Aug 2010 18:29:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o7AITd0u099646; Tue, 10 Aug 2010 18:29:39 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o7AITd63099643; Tue, 10 Aug 2010 18:29:39 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201008101829.o7AITd63099643@svn.freebsd.org> From: Attilio Rao Date: Tue, 10 Aug 2010 18:29:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r211151 - in head/sys: amd64/amd64 i386/i386 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: Tue, 10 Aug 2010 18:29:39 -0000 Author: attilio Date: Tue Aug 10 18:29:39 2010 New Revision: 211151 URL: http://svn.freebsd.org/changeset/base/211151 Log: Fix a typo due to a stale version of the patch. Reported by: gianni, rdivacky MFC after: 1 month X-MFC: 211149 Modified: head/sys/amd64/amd64/mp_machdep.c head/sys/i386/i386/mp_machdep.c Modified: head/sys/amd64/amd64/mp_machdep.c ============================================================================== --- head/sys/amd64/amd64/mp_machdep.c Tue Aug 10 17:06:38 2010 (r211150) +++ head/sys/amd64/amd64/mp_machdep.c Tue Aug 10 18:29:39 2010 (r211151) @@ -1529,7 +1529,7 @@ SYSINIT(cpu_hlt, SI_SUB_SMP, SI_ORDER_AN int mp_grab_cpu_hlt(void) { - cpuset_t mask; + cpumask_t mask; #ifdef MP_WATCHDOG u_int cpuid; #endif Modified: head/sys/i386/i386/mp_machdep.c ============================================================================== --- head/sys/i386/i386/mp_machdep.c Tue Aug 10 17:06:38 2010 (r211150) +++ head/sys/i386/i386/mp_machdep.c Tue Aug 10 18:29:39 2010 (r211151) @@ -1580,7 +1580,7 @@ SYSINIT(cpu_hlt, SI_SUB_SMP, SI_ORDER_AN int mp_grab_cpu_hlt(void) { - cpuset_t mask; + cpumask_t mask; #ifdef MP_WATCHDOG u_int cpuid; #endif