summaryrefslogtreecommitdiffstats
path: root/sys/netatm/uni/sscop_var.h
diff options
context:
space:
mode:
authorarr <arr@FreeBSD.org>2002-06-13 14:32:51 +0000
committerarr <arr@FreeBSD.org>2002-06-13 14:32:51 +0000
commit14714108891719cd4af97afba8c20ed7b9f5a0f4 (patch)
treed4d37a64db8643744bf8333ce20f45640c1bcaef /sys/netatm/uni/sscop_var.h
parent2f568aeb91d6d5f3b370b9b641b5a64a3466d1bd (diff)
downloadFreeBSD-src-14714108891719cd4af97afba8c20ed7b9f5a0f4.zip
FreeBSD-src-14714108891719cd4af97afba8c20ed7b9f5a0f4.tar.gz
- Finish the uni part of the storage pool cleanup. There should now only
be a few bits left to clean from the HARP code in terms of what is using the storage pools; once that's done, the memory management code can be removed entirely. This commit effectively changes the use of dynamic memory routines from atm_allocate, atm_free, atm_release_pool to uma_zcreate, uma_zalloc, uma_zfree, uma_zdestroy.
Diffstat (limited to 'sys/netatm/uni/sscop_var.h')
-rw-r--r--sys/netatm/uni/sscop_var.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netatm/uni/sscop_var.h b/sys/netatm/uni/sscop_var.h
index 807b70a..dca9d27 100644
--- a/sys/netatm/uni/sscop_var.h
+++ b/sys/netatm/uni/sscop_var.h
@@ -135,6 +135,9 @@ struct sscop_stat {
};
#ifdef _KERNEL
+
+#include <vm/uma.h>
+
/*
* Global function declarations
*/
@@ -264,7 +267,7 @@ void qsaal1_clear_connection(struct sscop *);
/*
* External variables
*/
-extern struct sp_info sscop_pool;
+extern uma_zone_t sscop_zone;
extern int sscop_vccnt;
extern struct sscop *sscop_head;
extern struct sscop_stat sscop_stat;
OpenPOWER on IntegriCloud