Module Name: src Committed By: pooka Date: Sun Sep 13 19:07:19 UTC 2009
Modified Files: src/sys/rump/librump/rumpkern: pool.c Log Message: remove pool link set attach code To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/rump/librump/rumpkern/pool.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/librump/rumpkern/pool.c diff -u src/sys/rump/librump/rumpkern/pool.c:1.14 src/sys/rump/librump/rumpkern/pool.c:1.15 --- src/sys/rump/librump/rumpkern/pool.c:1.14 Wed Jun 3 16:07:21 2009 +++ src/sys/rump/librump/rumpkern/pool.c Sun Sep 13 19:07:18 2009 @@ -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 @@ 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