From owner-cvs-src@FreeBSD.ORG Sat Mar 27 10:21:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CB7116A4CE; Sat, 27 Mar 2004 10:21:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0625943D53; Sat, 27 Mar 2004 10:21:25 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i2RILOGe015532; Sat, 27 Mar 2004 10:21:24 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2RILOGK015528; Sat, 27 Mar 2004 10:21:24 -0800 (PST) (envelope-from marcel) Message-Id: <200403271821.i2RILOGK015528@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 27 Mar 2004 10:21:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c subr_smp.c src/sys/sys pcpu.h smp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Mar 2004 18:21:25 -0000 marcel 2004/03/27 10:21:24 PST FreeBSD src repository Modified files: sys/kern sched_ule.c subr_smp.c sys/sys pcpu.h smp.h Log: Change the type of the various CPU masks to cpumask_t. Note that as long as there are still explicit uses of int, whether in types or in function names (such as atomic_set_int() in sched_ule.c), we can not change cpumask_t to be anything other than u_int. See also the commit log for sys/sys/types.h, revision 1.84. Revision Changes Path 1.102 +4 -4 src/sys/kern/sched_ule.c 1.186 +7 -7 src/sys/kern/subr_smp.c 1.13 +2 -2 src/sys/sys/pcpu.h 1.77 +6 -6 src/sys/sys/smp.h