diff options
author | 2015-04-21 13:15:54 +0000 | |
---|---|---|
committer | 2015-04-21 13:15:54 +0000 | |
commit | deb2d6ebfbc6d8d08b42075cc43c5a7c6054eb0f (patch) | |
tree | c5f3d14d3aa3cd94aedab9a7aa30678a9d416a6b | |
parent | append the setdir ("5.7/amd64", "snapshots/vax") as get-parameter "path" (diff) | |
download | wireguard-openbsd-deb2d6ebfbc6d8d08b42075cc43c5a7c6054eb0f.tar.xz wireguard-openbsd-deb2d6ebfbc6d8d08b42075cc43c5a7c6054eb0f.zip |
disable *8 again for now. incoherent archs arent having much fun with it.
-rw-r--r-- | sys/kern/subr_pool.c | 4 |
1 files 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) { |