From 35e5b8d0ded86e3e6e3110408146a376d4717ec1 Mon Sep 17 00:00:00 2001 From: arr Date: Wed, 24 Apr 2002 18:06:18 +0000 Subject: - Remove atm_attributes_pool and the relating atm_allocate() and atm_free() calls associated with the pool and the objects allocated out from the pool. - Insert atm_attributes_zone which is a uma_zone that is used just as the atm_attributes_pool was (including the max objects value). Also, used the appropriate zalloc and zfree's where necesary. --- sys/netatm/atm_var.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sys/netatm/atm_var.h') diff --git a/sys/netatm/atm_var.h b/sys/netatm/atm_var.h index bacee49..eb7ee35 100644 --- a/sys/netatm/atm_var.h +++ b/sys/netatm/atm_var.h @@ -40,6 +40,9 @@ #ifdef _KERNEL + +#include + /* * Global variable declarations */ @@ -63,7 +66,7 @@ extern int atm_debug; extern struct timeval atm_debugtime; extern int atm_dev_print; extern int atm_print_data; -extern struct sp_info atm_attributes_pool; +extern uma_zone_t atm_attributes_zone; extern struct pr_usrreqs atm_dgram_usrreqs; -- cgit v1.1