From: dm Date: Tue, 5 Mar 1996 02:30:00 +0000 (+0000) Subject: MAXBSIZE of 32768 breaks machines with 64 Megs of RAM X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b8fefd6e8d99cddb15bec75728487b1a8b8bb75e;p=openbsd MAXBSIZE of 32768 breaks machines with 64 Megs of RAM --- diff --git a/sys/sys/param.h b/sys/sys/param.h index 6525205fbd1..9604d35af70 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.4 1996/03/03 12:12:06 niklas Exp $ */ +/* $OpenBSD: param.h,v 1.5 1996/03/05 02:30:00 dm Exp $ */ /* $NetBSD: param.h,v 1.18.2.1 1995/10/12 05:42:01 jtc Exp $ */ /*- @@ -156,7 +156,7 @@ * it smaller make make some file systems unmountable. */ #if defined(__i386__) -#define MAXBSIZE 32768 /* XXX MAXPHYS */ +#define MAXBSIZE 16384 /* XXX MAXPHYS */ #else #define MAXBSIZE MAXPHYS #endif