summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordm <dm@cvs.openbsd.org>1996-03-05 02:30:01 +0000
committerdm <dm@cvs.openbsd.org>1996-03-05 02:30:01 +0000
commitbeda0e2e29475ee94b270a41a4a50350f8e80e69 (patch)
treea626f4a95de5fa21f6beb6e52d2a2df9d08d0e77
parentdc9d66dbb4ac3b9a8cec8cca51b8d8683535970d (diff)
MAXBSIZE of 32768 breaks machines with 64 Megs of RAM
-rw-r--r--sys/sys/param.h4
1 files changed, 2 insertions, 2 deletions
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