summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-10-25 11:14:45 +0000
committerderaadt <deraadt@openbsd.org>1996-10-25 11:14:45 +0000
commitff7badd3766b391580bb11a80ccd4f6be3e81ef6 (patch)
tree9a4b775fdf88cd6d2e52f70670bef7067cffa7c0
parentgrow kvm space; fix an over-agressive pmap optimization (diff)
downloadwireguard-openbsd-ff7badd3766b391580bb11a80ccd4f6be3e81ef6.tar.xz
wireguard-openbsd-ff7badd3766b391580bb11a80ccd4f6be3e81ef6.zip
i386 MAXBSIZE restriction goes away
-rw-r--r--sys/sys/param.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 1ef320e86e3..4cb4f8bc2ac 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.10 1996/09/30 12:30:18 deraadt Exp $ */
+/* $OpenBSD: param.h,v 1.11 1996/10/25 11:14:45 deraadt Exp $ */
/* $NetBSD: param.h,v 1.23 1996/03/17 01:02:29 thorpej Exp $ */
/*-
@@ -153,13 +153,9 @@
* smaller units (fragments) only in the last direct block. MAXBSIZE
* primarily determines the size of buffers in the buffer pool. It may be
* made larger without any effect on existing file systems; however making
- * it smaller make make some file systems unmountable.
+ * it smaller makes some file systems unmountable.
*/
-#if defined(__i386__)
-#define MAXBSIZE 16384 /* XXX MAXPHYS */
-#else
#define MAXBSIZE MAXPHYS
-#endif
#define MAXFRAG 8
/*