From owner-cvs-src-old@FreeBSD.ORG Tue Aug 10 16:14:50 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 E96FE1065742 for ; Tue, 10 Aug 2010 16:14:50 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D73528FC16 for ; Tue, 10 Aug 2010 16:14:50 +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 o7AGEoli069748 for ; Tue, 10 Aug 2010 16:14:50 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o7AGEoBY069747 for cvs-src-old@freebsd.org; Tue, 10 Aug 2010 16:14:50 GMT (envelope-from attilio@repoman.freebsd.org) Message-Id: <201008101614.o7AGEoBY069747@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to attilio@repoman.freebsd.org using -f From: Attilio Rao Date: Tue, 10 Aug 2010 16:14:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 mp_machdep.c pmap.c src/sys/i386/i386 mp_machdep.c pmap.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: Tue, 10 Aug 2010 16:14:51 -0000 attilio 2010-08-10 16:14:10 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mp_machdep.c pmap.c sys/i386/i386 mp_machdep.c pmap.c Log: SVN rev 211149 on 2010-08-10 16:14:10Z by attilio Fix some places that may use cpumask_t while they still use 'int' types. While there, also fix some places assuming cpu type is 'int' while u_int is really meant. Note: this will also fix some possible races in per-cpu data accessings to be addressed in further commits. In collabouration with: Yahoo! Incorporated (via sbruno and peter) Tested by: gianni MFC after: 1 month Revision Changes Path 1.324 +17 -9 src/sys/amd64/amd64/mp_machdep.c 1.710 +3 -6 src/sys/amd64/amd64/pmap.c 1.312 +12 -7 src/sys/i386/i386/mp_machdep.c 1.689 +3 -6 src/sys/i386/i386/pmap.c