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/solbourne | |
parent | 139ee566aed85a28300e981896257cc93cbd18b6 (diff) |
Add new stub uvm_shutdown() and call it from the right place in MD boot()
Diffstat (limited to 'sys/arch/solbourne')
-rw-r--r-- | sys/arch/solbourne/solbourne/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/solbourne/solbourne/machdep.c b/sys/arch/solbourne/solbourne/machdep.c index 9b5701bbb33..e1a9b85c0cf 100644 --- a/sys/arch/solbourne/solbourne/machdep.c +++ b/sys/arch/solbourne/solbourne/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.5 2008/01/23 16:37:57 jsing Exp $ */ +/* $OpenBSD: machdep.c,v 1.6 2008/04/09 16:58:10 deraadt Exp $ */ /* OpenBSD: machdep.c,v 1.105 2005/04/11 15:13:01 deraadt Exp */ /* @@ -646,6 +646,8 @@ boot(howto) printf("WARNING: not updating battery clock\n"); } } + + uvm_shutdown(); (void) splhigh(); /* ??? */ if (howto & RB_DUMP) |