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/mvme88k | |
parent | 139ee566aed85a28300e981896257cc93cbd18b6 (diff) |
Add new stub uvm_shutdown() and call it from the right place in MD boot()
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c index ea7cd4553fa..f990f53ca14 100644 --- a/sys/arch/mvme88k/mvme88k/machdep.c +++ b/sys/arch/mvme88k/mvme88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.210 2008/01/23 16:37:57 jsing Exp $ */ +/* $OpenBSD: machdep.c,v 1.211 2008/04/09 16:58:10 deraadt Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -493,8 +493,8 @@ boot(howto) printf("WARNING: not updating battery clock\n"); } - /* Disable interrupts. */ - splhigh(); + uvm_shutdown(); + splhigh(); /* Disable interrupts. */ /* If rebooting and a dump is requested, do it. */ if (howto & RB_DUMP) |