summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
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/alpha
parent139ee566aed85a28300e981896257cc93cbd18b6 (diff)
Add new stub uvm_shutdown() and call it from the right place in MD boot()
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r--sys/arch/alpha/alpha/machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c
index 4f7836c9de1..c5e85fb41dd 100644
--- a/sys/arch/alpha/alpha/machdep.c
+++ b/sys/arch/alpha/alpha/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.113 2007/10/10 15:53:51 art Exp $ */
+/* $OpenBSD: machdep.c,v 1.114 2008/04/09 16:58:10 deraadt Exp $ */
/* $NetBSD: machdep.c,v 1.210 2000/06/01 17:12:38 thorpej Exp $ */
/*-
@@ -1066,8 +1066,8 @@ boot(howto)
}
}
- /* Disable interrupts. */
- splhigh();
+ uvm_shutdown();
+ splhigh(); /* Disable interrupts. */
/* If rebooting and a dump is requested do it. */
if (howto & RB_DUMP)