From 86d80207539d55304036cbd8dca43df599e8eba2 Mon Sep 17 00:00:00 2001 From: wdk Date: Sat, 28 Apr 2001 04:20:27 +0000 Subject: [PATCH] Move previous patch which performs allocsys() before pmap_bootstrap() to the correct location. --- sys/arch/mipsco/mipsco/machdep.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sys/arch/mipsco/mipsco/machdep.c b/sys/arch/mipsco/mipsco/machdep.c index 86e9c371bac2..06fa183c97ce 100644 --- a/sys/arch/mipsco/mipsco/machdep.c +++ b/sys/arch/mipsco/mipsco/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.24 2001/04/24 15:41:40 thorpej Exp $ */ +/* $NetBSD: machdep.c,v 1.25 2001/04/28 04:20:27 wdk Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -43,7 +43,7 @@ #include /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.24 2001/04/24 15:41:40 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.25 2001/04/28 04:20:27 wdk Exp $"); /* from: Utah Hdr: machdep.c 1.63 91/04/24 */ @@ -341,17 +341,17 @@ mach_init(argc, argv, envp, bim, bip) */ mips_init_msgbuf(); - /* - * Initialize the virtual memory system. - */ - pmap_bootstrap(); - /* * Compute the size of system data structures. pmap_bootstrap() * needs some of this information. */ size = (vsize_t)allocsys(NULL, NULL); + /* + * Initialize the virtual memory system. + */ + pmap_bootstrap(); + /* * Allocate space for proc0's USPACE. */