From owner-cvs-src-old@FreeBSD.ORG Thu May 14 17:43:16 2009 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 8A0541065672 for ; Thu, 14 May 2009 17:43:16 +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 73C3B8FC1A for ; Thu, 14 May 2009 17:43:16 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n4EHhG1t053761 for ; Thu, 14 May 2009 17:43:16 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n4EHhG7I053760 for cvs-src-old@freebsd.org; Thu, 14 May 2009 17:43:16 GMT (envelope-from attilio@repoman.freebsd.org) Message-Id: <200905141743.n4EHhG7I053760@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to attilio@repoman.freebsd.org using -f From: Attilio Rao Date: Thu, 14 May 2009 17:43:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 mp_machdep.c src/sys/amd64/include smp.h src/sys/gnu/fs/xfs/FreeBSD/support debug.h src/sys/i386/i386 mp_machdep.c pmap.c src/sys/i386/include smp.h src/sys/i386/xen 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: Thu, 14 May 2009 17:43:16 -0000 attilio 2009-05-14 17:43:00 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mp_machdep.c sys/amd64/include smp.h sys/gnu/fs/xfs/FreeBSD/support debug.h sys/i386/i386 mp_machdep.c pmap.c sys/i386/include smp.h sys/i386/xen mp_machdep.c Log: SVN rev 192114 on 2009-05-14 17:43:00Z by attilio FreeBSD right now support 32 CPUs on all the architectures at least. With the arrival of 128+ cores it is necessary to handle more than that. One of the first thing to change is the support for cpumask_t that needs to handle more than 32 bits masking (which happens now). Some places, however, still assume that cpumask_t is a 32 bits mask. Fix that situation by using always correctly cpumask_t when needed. While here, remove the part under STOP_NMI for the Xen support as it is broken in any case. Additively make ipi_nmi_pending as static. Reviewed by: jhb, kmacy Tested by: Giovanni Trematerra Revision Changes Path 1.308 +10 -10 src/sys/amd64/amd64/mp_machdep.c 1.96 +4 -4 src/sys/amd64/include/smp.h 1.3 +0 -1 src/sys/gnu/fs/xfs/FreeBSD/support/debug.h 1.301 +9 -9 src/sys/i386/i386/mp_machdep.c 1.635 +4 -5 src/sys/i386/i386/pmap.c 1.99 +3 -3 src/sys/i386/include/smp.h 1.15 +5 -61 src/sys/i386/xen/mp_machdep.c