Home | History | Annotate | Line # | Download | only in raidframe
rf_alloclist.c revision 1.4.14.3
      1  1.4.14.3  nathanw /*	$NetBSD: rf_alloclist.c,v 1.4.14.3 2001/11/14 19:15:45 nathanw Exp $	*/
      2       1.1    oster /*
      3       1.1    oster  * Copyright (c) 1995 Carnegie-Mellon University.
      4       1.1    oster  * All rights reserved.
      5       1.1    oster  *
      6       1.1    oster  * Author: Mark Holland
      7       1.1    oster  *
      8       1.1    oster  * Permission to use, copy, modify and distribute this software and
      9       1.1    oster  * its documentation is hereby granted, provided that both the copyright
     10       1.1    oster  * notice and this permission notice appear in all copies of the
     11       1.1    oster  * software, derivative works or modified versions, and any portions
     12       1.1    oster  * thereof, and that both notices appear in supporting documentation.
     13       1.1    oster  *
     14       1.1    oster  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     15       1.1    oster  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     16       1.1    oster  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     17       1.1    oster  *
     18       1.1    oster  * Carnegie Mellon requests users of this software to return to
     19       1.1    oster  *
     20       1.1    oster  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     21       1.1    oster  *  School of Computer Science
     22       1.1    oster  *  Carnegie Mellon University
     23       1.1    oster  *  Pittsburgh PA 15213-3890
     24       1.1    oster  *
     25       1.1    oster  * any improvements or extensions that they make and grant Carnegie the
     26       1.1    oster  * rights to redistribute these changes.
     27       1.1    oster  */
     28       1.1    oster 
     29       1.1    oster /****************************************************************************
     30       1.1    oster  *
     31       1.1    oster  * Alloclist.c -- code to manipulate allocation lists
     32       1.1    oster  *
     33       1.1    oster  * an allocation list is just a list of AllocListElem structures.  Each
     34       1.1    oster  * such structure contains a fixed-size array of pointers.  Calling
     35       1.1    oster  * FreeAList() causes each pointer to be freed.
     36       1.1    oster  *
     37       1.1    oster  ***************************************************************************/
     38  1.4.14.3  nathanw 
     39  1.4.14.3  nathanw #include <sys/cdefs.h>
     40  1.4.14.3  nathanw __KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.4.14.3 2001/11/14 19:15:45 nathanw Exp $");
     41       1.1    oster 
     42  1.4.14.2  nathanw #include <dev/raidframe/raidframevar.h>
     43  1.4.14.2  nathanw 
     44  1.4.14.2  nathanw #include "rf_options.h"
     45       1.1    oster #include "rf_threadstuff.h"
     46       1.1    oster #include "rf_alloclist.h"
     47       1.1    oster #include "rf_debugMem.h"
     48       1.1    oster #include "rf_etimer.h"
     49       1.1    oster #include "rf_general.h"
     50       1.1    oster #include "rf_shutdown.h"
     51       1.1    oster 
     52       1.1    oster RF_DECLARE_STATIC_MUTEX(alist_mutex)
     53       1.3    oster 	static unsigned int fl_hit_count, fl_miss_count;
     54       1.1    oster 
     55       1.3    oster 	static RF_AllocListElem_t *al_free_list = NULL;
     56       1.3    oster 	static int al_free_list_count;
     57       1.1    oster 
     58       1.1    oster #define RF_AL_FREELIST_MAX 256
     59       1.1    oster 
     60       1.1    oster #define DO_FREE(_p,_sz) RF_Free((_p),(_sz))
     61       1.1    oster 
     62       1.3    oster 	static void rf_ShutdownAllocList(void *);
     63       1.1    oster 
     64       1.3    oster 	static void rf_ShutdownAllocList(ignored)
     65       1.3    oster 	void   *ignored;
     66       1.1    oster {
     67       1.3    oster 	RF_AllocListElem_t *p, *pt;
     68       1.1    oster 
     69       1.3    oster 	for (p = al_free_list; p;) {
     70       1.3    oster 		pt = p;
     71       1.3    oster 		p = p->next;
     72       1.3    oster 		DO_FREE(pt, sizeof(*pt));
     73       1.3    oster 	}
     74       1.3    oster 	rf_mutex_destroy(&alist_mutex);
     75       1.3    oster 	/*
     76       1.3    oster         printf("Alloclist: Free list hit count %lu (%lu %%) miss count %lu (%lu %%)\n",
     77       1.3    oster 	       fl_hit_count, (100*fl_hit_count)/(fl_hit_count+fl_miss_count),
     78       1.3    oster 	       fl_miss_count, (100*fl_miss_count)/(fl_hit_count+fl_miss_count));
     79       1.3    oster         */
     80       1.1    oster }
     81       1.1    oster 
     82       1.3    oster int
     83       1.3    oster rf_ConfigureAllocList(listp)
     84       1.3    oster 	RF_ShutdownList_t **listp;
     85       1.1    oster {
     86       1.3    oster 	int     rc;
     87       1.1    oster 
     88       1.3    oster 	rc = rf_mutex_init(&alist_mutex);
     89       1.3    oster 	if (rc) {
     90       1.3    oster 		RF_ERRORMSG3("Unable to init mutex file %s line %d rc=%d\n", __FILE__,
     91       1.3    oster 		    __LINE__, rc);
     92       1.3    oster 		return (rc);
     93       1.3    oster 	}
     94       1.3    oster 	al_free_list = NULL;
     95       1.3    oster 	fl_hit_count = fl_miss_count = al_free_list_count = 0;
     96       1.3    oster 	rc = rf_ShutdownCreate(listp, rf_ShutdownAllocList, NULL);
     97       1.3    oster 	if (rc) {
     98       1.3    oster 		RF_ERRORMSG3("Unable to add to shutdown list file %s line %d rc=%d\n",
     99       1.3    oster 		    __FILE__, __LINE__, rc);
    100       1.3    oster 		rf_mutex_destroy(&alist_mutex);
    101       1.3    oster 		return (rc);
    102       1.3    oster 	}
    103       1.3    oster 	return (0);
    104       1.1    oster }
    105       1.1    oster 
    106       1.1    oster 
    107       1.1    oster /* we expect the lists to have at most one or two elements, so we're willing
    108       1.1    oster  * to search for the end.  If you ever observe the lists growing longer,
    109       1.1    oster  * increase POINTERS_PER_ALLOC_LIST_ELEMENT.
    110       1.1    oster  */
    111       1.3    oster void
    112       1.3    oster rf_real_AddToAllocList(l, p, size, lockflag)
    113       1.3    oster 	RF_AllocListElem_t *l;
    114       1.3    oster 	void   *p;
    115       1.3    oster 	int     size;
    116       1.3    oster 	int     lockflag;
    117       1.1    oster {
    118       1.3    oster 	RF_AllocListElem_t *newelem;
    119       1.1    oster 
    120       1.3    oster 	for (; l->next; l = l->next)
    121       1.3    oster 		RF_ASSERT(l->numPointers == RF_POINTERS_PER_ALLOC_LIST_ELEMENT);	/* find end of list */
    122       1.3    oster 
    123       1.3    oster 	RF_ASSERT(l->numPointers >= 0 && l->numPointers <= RF_POINTERS_PER_ALLOC_LIST_ELEMENT);
    124       1.3    oster 	if (l->numPointers == RF_POINTERS_PER_ALLOC_LIST_ELEMENT) {
    125       1.3    oster 		newelem = rf_real_MakeAllocList(lockflag);
    126       1.3    oster 		l->next = newelem;
    127       1.3    oster 		l = newelem;
    128       1.3    oster 	}
    129       1.3    oster 	l->pointers[l->numPointers] = p;
    130       1.3    oster 	l->sizes[l->numPointers] = size;
    131       1.3    oster 	l->numPointers++;
    132       1.1    oster 
    133       1.1    oster }
    134       1.1    oster 
    135       1.1    oster 
    136       1.1    oster /* we use the debug_mem_mutex here because we need to lock it anyway to call free.
    137       1.1    oster  * this is probably a bug somewhere else in the code, but when I call malloc/free
    138       1.1    oster  * outside of any lock I have endless trouble with malloc appearing to return the
    139       1.1    oster  * same pointer twice.  Since we have to lock it anyway, we might as well use it
    140       1.1    oster  * as the lock around the al_free_list.  Note that we can't call Free with the
    141       1.1    oster  * debug_mem_mutex locked.
    142       1.1    oster  */
    143       1.3    oster void
    144       1.3    oster rf_FreeAllocList(l)
    145       1.3    oster 	RF_AllocListElem_t *l;
    146       1.1    oster {
    147       1.3    oster 	int     i;
    148       1.3    oster 	RF_AllocListElem_t *temp, *p;
    149       1.1    oster 
    150       1.3    oster 	for (p = l; p; p = p->next) {
    151       1.3    oster 		RF_ASSERT(p->numPointers >= 0 && p->numPointers <= RF_POINTERS_PER_ALLOC_LIST_ELEMENT);
    152       1.3    oster 		for (i = 0; i < p->numPointers; i++) {
    153       1.3    oster 			RF_ASSERT(p->pointers[i]);
    154       1.3    oster 			RF_Free(p->pointers[i], p->sizes[i]);
    155       1.3    oster 		}
    156       1.3    oster 	}
    157       1.3    oster 	while (l) {
    158       1.3    oster 		temp = l;
    159       1.3    oster 		l = l->next;
    160       1.3    oster 		if (al_free_list_count > RF_AL_FREELIST_MAX) {
    161       1.3    oster 			DO_FREE(temp, sizeof(*temp));
    162       1.3    oster 		} else {
    163       1.3    oster 			temp->next = al_free_list;
    164       1.3    oster 			al_free_list = temp;
    165       1.3    oster 			al_free_list_count++;
    166       1.3    oster 		}
    167       1.3    oster 	}
    168       1.1    oster }
    169       1.1    oster 
    170       1.3    oster RF_AllocListElem_t *
    171       1.3    oster rf_real_MakeAllocList(lockflag)
    172       1.3    oster 	int     lockflag;
    173       1.1    oster {
    174       1.3    oster 	RF_AllocListElem_t *p;
    175       1.1    oster 
    176       1.3    oster 	if (al_free_list) {
    177       1.3    oster 		fl_hit_count++;
    178       1.3    oster 		p = al_free_list;
    179       1.3    oster 		al_free_list = p->next;
    180       1.3    oster 		al_free_list_count--;
    181       1.3    oster 	} else {
    182       1.3    oster 		fl_miss_count++;
    183       1.3    oster 		RF_Malloc(p, sizeof(RF_AllocListElem_t), (RF_AllocListElem_t *));	/* no allocation locking
    184       1.3    oster 											 * in kernel, so this is
    185       1.3    oster 											 * fine */
    186       1.3    oster 	}
    187       1.3    oster 	if (p == NULL) {
    188       1.3    oster 		return (NULL);
    189       1.3    oster 	}
    190  1.4.14.1  nathanw 	memset((char *) p, 0, sizeof(RF_AllocListElem_t));
    191       1.3    oster 	return (p);
    192       1.1    oster }
    193