Home | History | Annotate | Line # | Download | only in sys
cpuset.c revision 1.6
      1  1.6  christos /*	$NetBSD: cpuset.c,v 1.6 2008/06/16 02:53:32 christos Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*-
      4  1.1  christos  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5  1.1  christos  * All rights reserved.
      6  1.1  christos  *
      7  1.1  christos  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  christos  * by Christos Zoulas.
      9  1.1  christos  *
     10  1.1  christos  * Redistribution and use in source and binary forms, with or without
     11  1.1  christos  * modification, are permitted provided that the following conditions
     12  1.1  christos  * are met:
     13  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     14  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     15  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  christos  *    documentation and/or other materials provided with the distribution.
     18  1.1  christos  *
     19  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.1  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.1  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.1  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.1  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.1  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.1  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.1  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.1  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.1  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.1  christos  * POSSIBILITY OF SUCH DAMAGE.
     30  1.1  christos  */
     31  1.1  christos 
     32  1.1  christos #include <sys/cdefs.h>
     33  1.1  christos #if defined(LIBC_SCCS) && !defined(lint)
     34  1.6  christos __RCSID("$NetBSD: cpuset.c,v 1.6 2008/06/16 02:53:32 christos Exp $");
     35  1.1  christos #endif /* LIBC_SCCS and not lint */
     36  1.1  christos 
     37  1.1  christos #include <sys/param.h>
     38  1.1  christos #include <sys/sched.h>
     39  1.1  christos #ifdef _KERNEL
     40  1.1  christos #include <sys/kmem.h>
     41  1.1  christos #include <lib/libkern/libkern.h>
     42  1.1  christos #include <sys/atomic.h>
     43  1.1  christos #else
     44  1.1  christos #include <string.h>
     45  1.1  christos #include <stdlib.h>
     46  1.1  christos #include <sys/sysctl.h>
     47  1.1  christos #endif
     48  1.1  christos 
     49  1.1  christos #define	CPUSET_SHIFT	5
     50  1.1  christos #define	CPUSET_MASK	31
     51  1.1  christos #define CPUSET_SIZE(nc)	((nc) > 32 ? ((nc) >> CPUSET_SHIFT) : 1)
     52  1.1  christos 
     53  1.1  christos struct _cpuset {
     54  1.1  christos 	size_t		size;
     55  1.1  christos 	unsigned int	nused;
     56  1.1  christos 	struct _cpuset *next;
     57  1.1  christos 	uint32_t	bits[0];
     58  1.1  christos };
     59  1.1  christos 
     60  1.1  christos size_t
     61  1.5  christos /*ARGSUSED*/
     62  1.1  christos _cpuset_size(const cpuset_t *c)
     63  1.1  christos {
     64  1.1  christos 	return sizeof(struct {
     65  1.1  christos 	    size_t size;
     66  1.1  christos 	    unsigned int nused;
     67  1.1  christos 	    struct _cpuset *next;
     68  1.1  christos 	    uint32_t bits[c->size];
     69  1.1  christos 	});
     70  1.1  christos }
     71  1.1  christos 
     72  1.1  christos void
     73  1.1  christos _cpuset_zero(cpuset_t *c)
     74  1.1  christos {
     75  1.1  christos #ifdef _KERNEL
     76  1.1  christos 	KASSERT(c->nused == 1);
     77  1.1  christos #endif
     78  1.1  christos 	(void)memset(c->bits, 0, c->size * sizeof(c->bits[0]));
     79  1.1  christos }
     80  1.1  christos 
     81  1.1  christos int
     82  1.4     rmind _cpuset_isset(const cpuset_t *c, cpuid_t i)
     83  1.1  christos {
     84  1.2     rmind 	const int j = i >> CPUSET_SHIFT;
     85  1.2     rmind 
     86  1.1  christos 	if (j >= c->size || j < 0)
     87  1.1  christos 		return -1;
     88  1.1  christos 	return ((1 << (i & CPUSET_MASK)) & c->bits[j]) != 0;
     89  1.1  christos }
     90  1.1  christos 
     91  1.1  christos int
     92  1.4     rmind _cpuset_set(cpuset_t *c, cpuid_t i)
     93  1.1  christos {
     94  1.2     rmind 	const int j = i >> CPUSET_SHIFT;
     95  1.2     rmind 
     96  1.1  christos 	if (j >= c->size || j < 0)
     97  1.1  christos 		return -1;
     98  1.1  christos 	c->bits[j] |= 1 << (i & CPUSET_MASK);
     99  1.1  christos 	return 0;
    100  1.1  christos }
    101  1.1  christos 
    102  1.1  christos int
    103  1.4     rmind _cpuset_clr(cpuset_t *c, cpuid_t i)
    104  1.1  christos {
    105  1.2     rmind 	const int j = i >> CPUSET_SHIFT;
    106  1.2     rmind 
    107  1.1  christos 	if (j >= c->size || j < 0)
    108  1.1  christos 		return -1;
    109  1.1  christos 	c->bits[j] &= ~(1 << (i & CPUSET_MASK));
    110  1.1  christos 	return 0;
    111  1.1  christos }
    112  1.1  christos 
    113  1.1  christos cpuset_t *
    114  1.1  christos _cpuset_create(void)
    115  1.1  christos {
    116  1.1  christos 	cpuset_t s, *c;
    117  1.1  christos #ifdef _KERNEL
    118  1.1  christos 	s.size = CPUSET_SIZE(MAXCPUS);
    119  1.1  christos 	c = kmem_zalloc(_cpuset_size(&s), KM_SLEEP);
    120  1.1  christos #else
    121  1.1  christos 	static int mib[2] = { CTL_HW, HW_NCPU };
    122  1.2     rmind 	size_t len;
    123  1.1  christos 	int nc;
    124  1.2     rmind 	if (sysctl(mib, __arraycount(mib), &nc, &len, NULL, 0) == -1)
    125  1.1  christos 		return NULL;
    126  1.6  christos 	s.size = CPUSET_SIZE((unsigned int)nc);
    127  1.1  christos 	c = calloc(1, _cpuset_size(&s));
    128  1.1  christos #endif
    129  1.3     rmind 	if (c != NULL) {
    130  1.3     rmind 		c->next = NULL;
    131  1.3     rmind 		c->nused = 1;
    132  1.3     rmind 		c->size = s.size;
    133  1.3     rmind 	}
    134  1.1  christos 	return c;
    135  1.1  christos }
    136  1.1  christos 
    137  1.1  christos void
    138  1.1  christos _cpuset_destroy(cpuset_t *c)
    139  1.1  christos {
    140  1.1  christos #ifdef _KERNEL
    141  1.1  christos 	while (c) {
    142  1.1  christos 		KASSERT(c->nused == 0);
    143  1.1  christos 		kmem_free(c, _cpuset_size(c));
    144  1.1  christos 		c = c->next;
    145  1.1  christos 	}
    146  1.1  christos #else
    147  1.1  christos 	free(c);
    148  1.1  christos #endif
    149  1.1  christos }
    150  1.1  christos 
    151  1.1  christos #ifdef _KERNEL
    152  1.1  christos size_t
    153  1.4     rmind kcpuset_nused(const cpuset_t *c)
    154  1.1  christos {
    155  1.1  christos 	return c->nused;
    156  1.1  christos }
    157  1.1  christos 
    158  1.1  christos void
    159  1.4     rmind kcpuset_copy(cpuset_t *d, const cpuset_t *s)
    160  1.1  christos {
    161  1.2     rmind 
    162  1.1  christos 	KASSERT(d->size == s->size);
    163  1.1  christos 	KASSERT(d->nused == 1);
    164  1.1  christos 	(void)memcpy(d->bits, s->bits, d->size * sizeof(d->bits[0]));
    165  1.1  christos }
    166  1.1  christos 
    167  1.1  christos void
    168  1.4     rmind kcpuset_use(cpuset_t *c)
    169  1.1  christos {
    170  1.2     rmind 
    171  1.1  christos 	atomic_inc_uint(&c->nused);
    172  1.1  christos }
    173  1.1  christos 
    174  1.1  christos void
    175  1.4     rmind kcpuset_unuse(cpuset_t *c, cpuset_t **lst)
    176  1.1  christos {
    177  1.2     rmind 
    178  1.1  christos 	if (atomic_dec_uint_nv(&c->nused) != 0)
    179  1.1  christos 		return;
    180  1.1  christos 	KASSERT(c->nused > 0);
    181  1.1  christos 	KASSERT(c->next == NULL);
    182  1.1  christos 	if (lst == NULL) {
    183  1.1  christos 		_cpuset_destroy(c);
    184  1.1  christos 		return;
    185  1.1  christos 	}
    186  1.1  christos 	c->next = *lst;
    187  1.1  christos 	*lst = c;
    188  1.1  christos }
    189  1.1  christos #endif
    190