NetBSD/sys/dev/raidframe/rf_shutdown.c
oster ee19b085aa - first kick at a major reworking of RAIDframe's memory allocation code:
- all freelists converted to pools
  - initialization of structure members in certain cases where
	code was relying on specific allocation and usage properties
	to keep structures in a "known state" (that doesn't work with
	pools!).
  - make most pool_get() be "PR_WAITOK" until they can be analyzed
	further, and/or have proper error handling added.
  - all RF_Mallocs zero the space returned, so there is no difference
	between RF_Calloc and RF_Malloc.  In fact, all the RF_Calloc()'s
	do is tend to do is get things horribly confused.
	Make RF_Malloc() the "general memory allocator", with
	RF_MallocAndAdd() the "general memory allocator with
	allocation list".
  - some of these RF_Malloc's et al. are destined to disappear.
  - remove rf_rdp_freelist entirely (it's not used anywhere!)
  - remove: #include "rf_freelist.h"
  - to the files that were relying on the above, add: #include "rf_general.h"
  - add: #include "rf_debugMem.h" to rf_shutdown.h to make it happy
	about the loss of: #include "rf_freelist.h".

This shrinks an i386 GENERIC kernel by approx 5K.  RAIDframe now
weighs in at about 162K on i386.
2003-12-29 03:33:47 +00:00

117 lines
2.8 KiB
C

/* $NetBSD: rf_shutdown.c,v 1.14 2003/12/29 03:33:48 oster Exp $ */
/*
* rf_shutdown.c
*/
/*
* Copyright (c) 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Jim Zelenka
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
/*
* Maintain lists of cleanup functions. Also, mechanisms for coordinating
* thread startup and shutdown.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rf_shutdown.c,v 1.14 2003/12/29 03:33:48 oster Exp $");
#include <dev/raidframe/raidframevar.h>
#include "rf_archs.h"
#include "rf_shutdown.h"
#include "rf_debugMem.h"
#ifndef RF_DEBUG_SHUTDOWN
#define RF_DEBUG_SHUTDOWN 0
#endif
static void rf_FreeShutdownEnt(RF_ShutdownList_t *);
static void
rf_FreeShutdownEnt(RF_ShutdownList_t * ent)
{
FREE(ent, M_RAIDFRAME);
}
int
_rf_ShutdownCreate(
RF_ShutdownList_t ** listp,
void (*cleanup) (void *arg),
void *arg,
char *file,
int line)
{
RF_ShutdownList_t *ent;
/*
* Have to directly allocate memory here, since we start up before
* and shutdown after RAIDframe internal allocation system.
*/
/* ent = (RF_ShutdownList_t *) malloc(sizeof(RF_ShutdownList_t),
M_RAIDFRAME, M_WAITOK); */
ent = (RF_ShutdownList_t *) malloc(sizeof(RF_ShutdownList_t),
M_RAIDFRAME, M_NOWAIT);
if (ent == NULL)
return (ENOMEM);
ent->cleanup = cleanup;
ent->arg = arg;
ent->file = file;
ent->line = line;
ent->next = *listp;
*listp = ent;
return (0);
}
int
rf_ShutdownList(RF_ShutdownList_t ** list)
{
RF_ShutdownList_t *r, *next;
#if RF_DEBUG_SHUTDOWN
char *file;
int line;
#endif
for (r = *list; r; r = next) {
next = r->next;
#if RF_DEBUG_SHUTDOWN
file = r->file;
line = r->line;
if (rf_shutdownDebug) {
printf("call shutdown, created %s:%d\n", file, line);
}
#endif
r->cleanup(r->arg);
#if RF_DEBUG_SHUTDOWN
if (rf_shutdownDebug) {
printf("completed shutdown, created %s:%d\n", file, line);
}
#endif
rf_FreeShutdownEnt(r);
}
*list = NULL;
return (0);
}