From owner-cvs-src@FreeBSD.ORG  Wed Mar  5 01:49:21 2008
Return-Path: <owner-cvs-src@FreeBSD.ORG>
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 67250106566B;
	Wed,  5 Mar 2008 01:49:21 +0000 (UTC)
	(envelope-from jeff@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org
	[IPv6:2001:4f8:fff6::29])
	by mx1.freebsd.org (Postfix) with ESMTP id 5412F8FC27;
	Wed,  5 Mar 2008 01:49:21 +0000 (UTC)
	(envelope-from jeff@FreeBSD.org)
Received: from repoman.freebsd.org (localhost [127.0.0.1])
	by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m251nLAc081922;
	Wed, 5 Mar 2008 01:49:21 GMT (envelope-from jeff@repoman.freebsd.org)
Received: (from jeff@localhost)
	by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m251nL4S081921;
	Wed, 5 Mar 2008 01:49:21 GMT (envelope-from jeff)
Message-Id: <200803050149.m251nL4S081921@repoman.freebsd.org>
From: Jeff Roberson <jeff@FreeBSD.org>
Date: Wed, 5 Mar 2008 01:49:20 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/usr.bin/cpuset cpuset.c src/sys/sys cpuset.h
 src/sys/kern kern_cpuset.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 05 Mar 2008 01:49:21 -0000

jeff        2008-03-05 01:49:20 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/cpuset       cpuset.c 
    sys/sys              cpuset.h 
    sys/kern             kern_cpuset.c 
  Log:
   - Verify that when a user supplies a mask that is bigger than the kernel
     mask none of the upper bits are set.
   - Be more careful about enforcing the boundaries of masks and child sets.
   - Introduce a few more CPU_* macros for implementing these tests.
   - Change the cpusetsize argument to be bytes rather than bits to match
     other apis.
  
  Sponsored by:   Nokia
  
  Revision  Changes    Path
  1.2       +78 -26    src/sys/kern/kern_cpuset.c
  1.2       +22 -0     src/sys/sys/cpuset.h
  1.2       +7 -8      src/usr.bin/cpuset/cpuset.c