diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-04-09 16:58:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-04-09 16:58:12 +0000 |
commit | 92f5c0454663a139d99ea5e02df8508142157fa5 (patch) | |
tree | 4ba5b4fe5d087a1ac8fc9184a3d173a5f4165194 /sys/arch/sparc64 | |
parent | 139ee566aed85a28300e981896257cc93cbd18b6 (diff) |
Add new stub uvm_shutdown() and call it from the right place in MD boot()
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/sparc64/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c index b0623d98bc2..d1eac95388d 100644 --- a/sys/arch/sparc64/sparc64/machdep.c +++ b/sys/arch/sparc64/sparc64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.106 2008/03/22 21:10:29 kettenis Exp $ */ +/* $OpenBSD: machdep.c,v 1.107 2008/04/09 16:58:10 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */ /*- @@ -727,6 +727,8 @@ boot(howto) printf("WARNING: not updating battery clock\n"); } } + + uvm_shutdown(); (void) splhigh(); /* ??? */ /* If rebooting and a dump is requested, do it. */ |