Home | History | Annotate | Line # | Download | only in kern
subr_hash.c revision 1.3.34.2
      1  1.3.34.2   yamt /*	$NetBSD: subr_hash.c,v 1.3.34.2 2012/10/30 17:22:33 yamt Exp $	*/
      2       1.1  pooka 
      3       1.1  pooka /*
      4       1.1  pooka  * Copyright (c) 1982, 1986, 1991, 1993
      5       1.1  pooka  *	The Regents of the University of California.  All rights reserved.
      6       1.1  pooka  * (c) UNIX System Laboratories, Inc.
      7       1.1  pooka  * All or some portions of this file are derived from material licensed
      8       1.1  pooka  * to the University of California by American Telephone and Telegraph
      9       1.1  pooka  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10       1.1  pooka  * the permission of UNIX System Laboratories, Inc.
     11       1.1  pooka  *
     12       1.1  pooka  * Redistribution and use in source and binary forms, with or without
     13       1.1  pooka  * modification, are permitted provided that the following conditions
     14       1.1  pooka  * are met:
     15       1.1  pooka  * 1. Redistributions of source code must retain the above copyright
     16       1.1  pooka  *    notice, this list of conditions and the following disclaimer.
     17       1.1  pooka  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1  pooka  *    notice, this list of conditions and the following disclaimer in the
     19       1.1  pooka  *    documentation and/or other materials provided with the distribution.
     20       1.1  pooka  * 3. Neither the name of the University nor the names of its contributors
     21       1.1  pooka  *    may be used to endorse or promote products derived from this software
     22       1.1  pooka  *    without specific prior written permission.
     23       1.1  pooka  *
     24       1.1  pooka  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.1  pooka  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1  pooka  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1  pooka  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1  pooka  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1  pooka  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1  pooka  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1  pooka  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1  pooka  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1  pooka  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1  pooka  * SUCH DAMAGE.
     35       1.1  pooka  *
     36       1.1  pooka  *	@(#)kern_subr.c	8.4 (Berkeley) 2/14/95
     37       1.1  pooka  */
     38       1.1  pooka 
     39       1.1  pooka #include <sys/cdefs.h>
     40  1.3.34.2   yamt __KERNEL_RCSID(0, "$NetBSD: subr_hash.c,v 1.3.34.2 2012/10/30 17:22:33 yamt Exp $");
     41       1.1  pooka 
     42       1.1  pooka #include <sys/param.h>
     43       1.3     ad #include <sys/kmem.h>
     44       1.1  pooka #include <sys/systm.h>
     45       1.1  pooka 
     46  1.3.34.2   yamt static size_t
     47  1.3.34.2   yamt hash_list_size(enum hashtype htype)
     48  1.3.34.2   yamt {
     49  1.3.34.2   yamt 	LIST_HEAD(, generic) *hashtbl_list;
     50  1.3.34.2   yamt 	SLIST_HEAD(, generic) *hashtbl_slist;
     51  1.3.34.2   yamt 	TAILQ_HEAD(, generic) *hashtbl_tailq;
     52  1.3.34.2   yamt 	size_t esize;
     53  1.3.34.2   yamt 
     54  1.3.34.2   yamt 	switch (htype) {
     55  1.3.34.2   yamt 	case HASH_LIST:
     56  1.3.34.2   yamt 		esize = sizeof(*hashtbl_list);
     57  1.3.34.2   yamt 		break;
     58  1.3.34.2   yamt 	case HASH_SLIST:
     59  1.3.34.2   yamt 		esize = sizeof(*hashtbl_slist);
     60  1.3.34.2   yamt 		break;
     61  1.3.34.2   yamt 	case HASH_TAILQ:
     62  1.3.34.2   yamt 		esize = sizeof(*hashtbl_tailq);
     63  1.3.34.2   yamt 		break;
     64  1.3.34.2   yamt 	default:
     65  1.3.34.2   yamt 		panic("hashdone: invalid table type");
     66  1.3.34.2   yamt 	}
     67  1.3.34.2   yamt 	return esize;
     68  1.3.34.2   yamt }
     69  1.3.34.2   yamt 
     70       1.1  pooka /*
     71       1.1  pooka  * General routine to allocate a hash table.
     72       1.1  pooka  * Allocate enough memory to hold at least `elements' list-head pointers.
     73       1.1  pooka  * Return a pointer to the allocated space and set *hashmask to a pattern
     74       1.1  pooka  * suitable for masking a value to use as an index into the returned array.
     75       1.1  pooka  */
     76       1.1  pooka void *
     77       1.3     ad hashinit(u_int elements, enum hashtype htype, bool waitok, u_long *hashmask)
     78       1.1  pooka {
     79       1.1  pooka 	LIST_HEAD(, generic) *hashtbl_list;
     80       1.2  rmind 	SLIST_HEAD(, generic) *hashtbl_slist;
     81       1.1  pooka 	TAILQ_HEAD(, generic) *hashtbl_tailq;
     82  1.3.34.2   yamt 	u_long hashsize, i;
     83       1.1  pooka 	size_t esize;
     84       1.1  pooka 	void *p;
     85  1.3.34.2   yamt 
     86  1.3.34.2   yamt 	KASSERT(elements > 0);
     87  1.3.34.1   yamt 
     88  1.3.34.1   yamt #define MAXELEMENTS (1U << ((sizeof(elements) * NBBY) - 1))
     89  1.3.34.1   yamt 	if (elements > MAXELEMENTS)
     90  1.3.34.1   yamt 		elements = MAXELEMENTS;
     91  1.3.34.1   yamt 
     92       1.1  pooka 	for (hashsize = 1; hashsize < elements; hashsize <<= 1)
     93       1.1  pooka 		continue;
     94       1.1  pooka 
     95  1.3.34.2   yamt 	esize = hash_list_size(htype);
     96  1.3.34.2   yamt 	p = kmem_alloc(hashsize * esize, waitok ? KM_SLEEP : KM_NOSLEEP);
     97       1.3     ad 	if (p == NULL)
     98  1.3.34.2   yamt 		return NULL;
     99       1.1  pooka 
    100       1.1  pooka 	switch (htype) {
    101       1.1  pooka 	case HASH_LIST:
    102       1.1  pooka 		hashtbl_list = p;
    103       1.1  pooka 		for (i = 0; i < hashsize; i++)
    104       1.1  pooka 			LIST_INIT(&hashtbl_list[i]);
    105       1.1  pooka 		break;
    106       1.2  rmind 	case HASH_SLIST:
    107       1.2  rmind 		hashtbl_slist = p;
    108       1.2  rmind 		for (i = 0; i < hashsize; i++)
    109       1.2  rmind 			SLIST_INIT(&hashtbl_slist[i]);
    110       1.2  rmind 		break;
    111       1.1  pooka 	case HASH_TAILQ:
    112       1.1  pooka 		hashtbl_tailq = p;
    113       1.1  pooka 		for (i = 0; i < hashsize; i++)
    114       1.1  pooka 			TAILQ_INIT(&hashtbl_tailq[i]);
    115       1.1  pooka 		break;
    116       1.1  pooka 	}
    117       1.1  pooka 	*hashmask = hashsize - 1;
    118  1.3.34.2   yamt 	return p;
    119       1.1  pooka }
    120       1.1  pooka 
    121       1.1  pooka /*
    122       1.1  pooka  * Free memory from hash table previosly allocated via hashinit().
    123       1.1  pooka  */
    124       1.1  pooka void
    125       1.3     ad hashdone(void *hashtbl, enum hashtype htype, u_long hashmask)
    126       1.1  pooka {
    127  1.3.34.2   yamt 	const size_t esize = hash_list_size(htype);
    128       1.3     ad 	kmem_free(hashtbl, esize * (hashmask + 1));
    129       1.1  pooka }
    130