remove pool link set attach code

This commit is contained in:
pooka 2009-09-13 19:07:18 +00:00
parent dc553b0f9c
commit a06e4d63b8
1 changed files with 3 additions and 10 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pool.c,v 1.14 2009/06/03 16:07:21 pooka Exp $ */
/* $NetBSD: pool.c,v 1.15 2009/09/13 19:07:18 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pool.c,v 1.14 2009/06/03 16:07:21 pooka Exp $");
__KERNEL_RCSID(0, "$NetBSD: pool.c,v 1.15 2009/09/13 19:07:18 pooka Exp $");
#ifndef RUMP_USE_REAL_ALLOCATORS
@ -45,15 +45,8 @@ struct pool_allocator pool_allocator_nointr;
void
pool_subsystem_init()
{
__link_set_decl(pools, struct link_pool_init);
struct link_pool_init *const *pi;
#define _pi(name) (*pi)->name
__link_set_foreach(pi, pools) {
pool_init(_pi(pp), _pi(size), _pi(align), _pi(align_offset),
_pi(flags), _pi(wchan), _pi(palloc), _pi(ipl));
}
#undef _pi
/* nada */
}
void