summaryrefslogtreecommitdiff
path: root/sys/arch/hp300
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2008-04-09 16:58:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2008-04-09 16:58:12 +0000
commit92f5c0454663a139d99ea5e02df8508142157fa5 (patch)
tree4ba5b4fe5d087a1ac8fc9184a3d173a5f4165194 /sys/arch/hp300
parent139ee566aed85a28300e981896257cc93cbd18b6 (diff)
Add new stub uvm_shutdown() and call it from the right place in MD boot()
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r--sys/arch/hp300/hp300/machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c
index f994edf2f93..6d269ebe747 100644
--- a/sys/arch/hp300/hp300/machdep.c
+++ b/sys/arch/hp300/hp300/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.117 2008/01/04 19:10:31 miod Exp $ */
+/* $OpenBSD: machdep.c,v 1.118 2008/04/09 16:58:10 deraadt Exp $ */
/* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */
/*
@@ -678,8 +678,8 @@ boot(howto)
}
}
- /* Disable interrupts. */
- splhigh();
+ uvm_shutdown();
+ splhigh(); /* Disable interrupts. */
/* If rebooting and a dump is requested do it. */
if (howto & RB_DUMP)