diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-12-04 23:40:45 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-12-04 23:40:45 +0000 |
commit | 00337120e1cff7d7e35009e0bdb888e7fdf09555 (patch) | |
tree | 2c8564c34bf22fb8b027eecf67cdbb9302b55f77 | |
parent | c4452a7ce1561c195dbe49438eecc9b600020c6c (diff) |
enable to large clusters again now that arts put the pool allocator for
them in again.
-rw-r--r-- | sys/kern/uipc_mbuf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index da1e3013b8e..bae66752398 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_mbuf.c,v 1.107 2008/11/29 19:57:09 deraadt Exp $ */ +/* $OpenBSD: uipc_mbuf.c,v 1.108 2008/12/04 23:40:44 dlg Exp $ */ /* $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $ */ /* @@ -99,13 +99,11 @@ struct pool mbpool; /* mbuf pool */ u_int mclsizes[] = { MCLBYTES, /* must be at slot 0 */ 4 * 1024, -#if 0 8 * 1024, 9 * 1024, 12 * 1024, 16 * 1024, 64 * 1024 -#endif }; static char mclnames[MCLPOOLS][8]; struct pool mclpools[MCLPOOLS]; |