summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2001-12-06 01:03:44 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2001-12-06 01:03:44 +0000
commit0e1dbe8cbb3d22fb4399464f229cd8ea9a36956f (patch)
tree6c08746a168a840a1a5b898cc48df5fb675c9d4b
parent0968f40508bf056b1f0c7a4c07d73b9883b033e8 (diff)
MAPPEDCOPY no more.
-rw-r--r--sys/arch/hp300/conf/DISKLESS6
-rw-r--r--sys/arch/hp300/conf/GENERIC6
-rw-r--r--sys/arch/hp300/hp300/machdep.c13
3 files changed, 3 insertions, 22 deletions
diff --git a/sys/arch/hp300/conf/DISKLESS b/sys/arch/hp300/conf/DISKLESS
index 3aabb5d76e8..42aef49e7f7 100644
--- a/sys/arch/hp300/conf/DISKLESS
+++ b/sys/arch/hp300/conf/DISKLESS
@@ -1,4 +1,4 @@
-# $OpenBSD: DISKLESS,v 1.21 2001/11/25 23:23:45 miod Exp $
+# $OpenBSD: DISKLESS,v 1.22 2001/12/06 01:03:42 miod Exp $
# $NetBSD: GENERIC,v 1.23 1997/01/31 06:12:57 thorpej Exp $
#
# Generic kernel - one size fits all.
@@ -33,10 +33,6 @@ option USELEDS # make the lights twinkle
option UK_KEYBOARD # include United Kingdom HIL keymap
option SE_KEYBOARD # include Swedish HIL keymap
-# This option enables a different copyin/copyout that uses page
-# mapping for large copies.
-#option MAPPEDCOPY # different copyin/copyout for large copies
-
#
# HP-UX binary compatibility.
# NOTE: THIS IS STILL VERY EXPERIMENTAL. YOUR MILEAGE MAY VARY.
diff --git a/sys/arch/hp300/conf/GENERIC b/sys/arch/hp300/conf/GENERIC
index 73cddd497b2..c68b4a85fa6 100644
--- a/sys/arch/hp300/conf/GENERIC
+++ b/sys/arch/hp300/conf/GENERIC
@@ -1,4 +1,4 @@
-# $OpenBSD: GENERIC,v 1.29 2001/11/25 23:23:45 miod Exp $
+# $OpenBSD: GENERIC,v 1.30 2001/12/06 01:03:42 miod Exp $
# $NetBSD: GENERIC,v 1.23 1997/01/31 06:12:57 thorpej Exp $
#
# Generic kernel - one size fits all.
@@ -33,10 +33,6 @@ option USELEDS # make the lights twinkle
option UK_KEYBOARD # include United Kingdom HIL keymap
option SE_KEYBOARD # include Swedish HIL keymap
-# This option enables a different copyin/copyout that uses page
-# mapping for large copies.
-#option MAPPEDCOPY # different copyin/copyout for large copies
-
#
# HP-UX binary compatibility.
# NOTE: THIS IS STILL VERY EXPERIMENTAL. YOUR MILEAGE MAY VARY.
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c
index f4fb5f22229..c3d5f783ea5 100644
--- a/sys/arch/hp300/hp300/machdep.c
+++ b/sys/arch/hp300/hp300/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.72 2001/11/29 22:50:03 millert Exp $ */
+/* $OpenBSD: machdep.c,v 1.73 2001/12/06 01:03:43 miod Exp $ */
/* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */
/*
@@ -990,17 +990,6 @@ void
initcpu()
{
-#ifdef MAPPEDCOPY
- /*
- * Initialize lower bound for doing copyin/copyout using
- * page mapping (if not already set). We don't do this on
- * VAC machines as it loses big time.
- */
- if (ectype == EC_VIRT)
- mappedcopysize = -1; /* in case it was patched */
- else
- mappedcopysize = NBPG;
-#endif
parityenable();
#ifdef USELEDS
ledinit();