#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rf_shutdown.c,v 1.21 2021/07/21 23:10:12 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);
}
#if RF_DEBUG_SHUTDOWN
void
_rf_ShutdownCreate(RF_ShutdownList_t **listp, void (*cleanup)(void *arg),
void *arg, char *file, int line)
#else
void
_rf_ShutdownCreate(RF_ShutdownList_t **listp, void (*cleanup)(void *arg),
void *arg)
#endif
{
RF_ShutdownList_t *ent;
ent = (RF_ShutdownList_t *) malloc(sizeof(RF_ShutdownList_t),
M_RAIDFRAME, M_WAITOK);
ent->cleanup = cleanup;
ent->arg = arg;
#if RF_DEBUG_SHUTDOWN
ent->file = file;
ent->line = line;
#endif
ent->next = *listp;
*listp = ent;
}
void
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;
}