summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2011-05-01 06:49:43 +0000
committermrg <mrg@NetBSD.org>2011-05-01 06:49:43 +0000
commit5c6140cb6f185c99e04f6fd4e2545e8d47b2a4a8 (patch)
treeaed48ee31b9014f50695ab699296b0db75ea6291 /sys/dev/raidframe
parentfd29b5075237ca984a5c5fae51459c287c5c3295 (diff)
convert rf_debug_mem_mutex to a kmutex, and fix RF_DEBUG_MEM option.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_debugMem.c34
-rw-r--r--sys/dev/raidframe/rf_debugMem.h4
2 files changed, 24 insertions, 14 deletions
diff --git a/sys/dev/raidframe/rf_debugMem.c b/sys/dev/raidframe/rf_debugMem.c
index 7d04732ccaa..d3c943ef146 100644
--- a/sys/dev/raidframe/rf_debugMem.c
+++ b/sys/dev/raidframe/rf_debugMem.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_debugMem.c,v 1.20 2009/03/18 10:22:41 cegger Exp $ */
+/* $NetBSD: rf_debugMem.c,v 1.21 2011/05/01 06:49:43 mrg Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_debugMem.c,v 1.20 2009/03/18 10:22:41 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_debugMem.c,v 1.21 2011/05/01 06:49:43 mrg Exp $");
#include <dev/raidframe/raidframevar.h>
@@ -40,6 +40,7 @@ __KERNEL_RCSID(0, "$NetBSD: rf_debugMem.c,v 1.20 2009/03/18 10:22:41 cegger Exp
#include "rf_options.h"
#include "rf_debugMem.h"
#include "rf_general.h"
+#include "rf_shutdown.h"
#if RF_DEBUG_MEM
@@ -52,26 +53,26 @@ struct mh_struct {
void *address;
int size;
int line;
- char *filen;
+ const char *filen;
char allocated;
struct mh_struct *next;
};
static struct mh_struct *mh_table[RF_MH_TABLESIZE];
-RF_DECLARE_MUTEX(rf_debug_mem_mutex)
+static rf_declare_mutex2(rf_debug_mem_mutex);
static int mh_table_initialized = 0;
-static void memory_hash_insert(void *addr, int size, int line, char *filen);
+static void memory_hash_insert(void *addr, int size, int line, const char *filen);
static int memory_hash_remove(void *addr, int sz);
void
-rf_record_malloc(void *p, int size, int line, char *filen)
+rf_record_malloc(void *p, int size, int line, const char *filen)
{
RF_ASSERT(size != 0);
- /* RF_LOCK_MUTEX(rf_debug_mem_mutex); */
+ /* rf_lock_mutex2(rf_debug_mem_mutex); */
memory_hash_insert(p, size, line, filen);
tot_mem_in_use += size;
- /* RF_UNLOCK_MUTEX(rf_debug_mem_mutex); */
+ /* rf_unlock_mutex2(rf_debug_mem_mutex); */
if ((long) p == rf_memDebugAddress) {
printf("Allocate: debug address allocated from line %d file %s\n", line, filen);
}
@@ -82,10 +83,10 @@ rf_unrecord_malloc(void *p, int sz)
{
int size;
- /* RF_LOCK_MUTEX(rf_debug_mem_mutex); */
+ /* rf_lock_mutex2(rf_debug_mem_mutex); */
size = memory_hash_remove(p, sz);
tot_mem_in_use -= size;
- /* RF_UNLOCK_MUTEX(rf_debug_mem_mutex); */
+ /* rf_unlock_mutex2(rf_debug_mem_mutex); */
if ((long) p == rf_memDebugAddress) {
printf("Free: Found debug address\n"); /* this is really only a
* flag line for gdb */
@@ -114,18 +115,27 @@ rf_print_unfreed(void)
}
#endif /* RF_DEBUG_MEM */
+#if RF_DEBUG_MEM
+static void
+rf_ShutdownDebugMem(void *unused)
+{
+ rf_destroy_mutex2(rf_debug_mem_mutex);
+}
+#endif
+
int
rf_ConfigureDebugMem(RF_ShutdownList_t **listp)
{
#if RF_DEBUG_MEM
int i;
- rf_mutex_init(&rf_debug_mem_mutex);
+ rf_init_mutex2(rf_debug_mem_mutex, IPL_VM);
if (rf_memDebug) {
for (i = 0; i < RF_MH_TABLESIZE; i++)
mh_table[i] = NULL;
mh_table_initialized = 1;
}
+ rf_ShutdownCreate(listp, rf_ShutdownDebugMem, NULL);
#endif
return (0);
}
@@ -135,7 +145,7 @@ rf_ConfigureDebugMem(RF_ShutdownList_t **listp)
#define HASHADDR(_a_) ( (((unsigned long) _a_)>>3) % RF_MH_TABLESIZE )
static void
-memory_hash_insert(void *addr, int size, int line, char *filen)
+memory_hash_insert(void *addr, int size, int line, const char *filen)
{
unsigned long bucket = HASHADDR(addr);
struct mh_struct *p;
diff --git a/sys/dev/raidframe/rf_debugMem.h b/sys/dev/raidframe/rf_debugMem.h
index e17a7ffd0e3..0ab17cae6c6 100644
--- a/sys/dev/raidframe/rf_debugMem.h
+++ b/sys/dev/raidframe/rf_debugMem.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_debugMem.h,v 1.12 2005/12/11 12:23:37 christos Exp $ */
+/* $NetBSD: rf_debugMem.h,v 1.13 2011/05/01 06:49:43 mrg Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -80,7 +80,7 @@
}
#endif
-void rf_record_malloc(void *p, int size, int line, char *filen);
+void rf_record_malloc(void *p, int size, int line, const char *filen);
void rf_unrecord_malloc(void *p, int sz);
void rf_print_unfreed(void);
int rf_ConfigureDebugMem(RF_ShutdownList_t ** listp);