Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Aug 2010 18:29:39 +0000 (UTC)
From:      Attilio Rao <attilio@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r211151 - in head/sys: amd64/amd64 i386/i386
Message-ID:  <201008101829.o7AITd63099643@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008101829.o7AITd63099643>