From deb2d6ebfbc6d8d08b42075cc43c5a7c6054eb0f Mon Sep 17 00:00:00 2001 From: dlg Date: Tue, 21 Apr 2015 13:15:54 +0000 Subject: [PATCH] disable *8 again for now. incoherent archs arent having much fun with it. --- sys/kern/subr_pool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c index e83ab4ad508..3c3f85e0477 100644 --- a/sys/kern/subr_pool.c +++ b/sys/kern/subr_pool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_pool.c,v 1.184 2015/04/07 11:15:02 dlg Exp $ */ +/* $OpenBSD: subr_pool.c,v 1.185 2015/04/21 13:15:54 dlg Exp $ */ /* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */ /*- @@ -241,7 +241,7 @@ pool_init(struct pool *pp, size_t size, u_int align, u_int ioff, int flags, size = roundup(size, align); if (palloc == NULL) { - while (size * 8 > pgsize) + while (size > pgsize) pgsize <<= 1; if (pgsize > PAGE_SIZE) { -- 2.20.1