summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-02-18 11:20:24 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-02-18 11:20:24 +0000
commitb738f280625b79a3c20c1f68908d66ac8bf36c1c (patch)
tree6fd092a73e73538c66c9137d470faa474679a2a7 /sys
parent2ffe1dbb8b6e588393c4a7f4f7a17c4a22fe72ef (diff)
Use MAXPHYS for MAXBSIZE for all platforms but i386; use 32K on i386 until
pmap can be fixed
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/param.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 951aeaec4cb..0a1eb5c454c 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -154,7 +154,11 @@
* made larger without any effect on existing file systems; however making
* it smaller make make some file systems unmountable.
*/
-#define MAXBSIZE 16384 /* XXX MAXPHYS */
+#if defined(__i386__)
+#define MAXBSIZE 32768 /* XXX MAXPHYS */
+#else
+#define MAXBSIZE MAXPHYS
+#endif
#define MAXFRAG 8
/*