diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1998-03-25 11:48:15 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1998-03-25 11:48:15 +0000 |
commit | 1c001fb9f2ae6735483a01d31e254cb18bfe4f62 (patch) | |
tree | a7a0964ef8f09728a965dc467878e4d09273db0a /sys | |
parent | e3205114d5bad563669922d208855d2f9f187ccb (diff) |
call vm_set_page_size
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/arc/arc/machdep.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/arc/arc/machdep.c b/sys/arch/arc/arc/machdep.c index 42020b3cf2d..0446dd053a1 100644 --- a/sys/arch/arc/arc/machdep.c +++ b/sys/arch/arc/arc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.31 1998/03/16 09:38:30 pefo Exp $ */ +/* $OpenBSD: machdep.c,v 1.32 1998/03/25 11:48:14 pefo Exp $ */ /* * Copyright (c) 1988 University of Utah. * Copyright (c) 1992, 1993 @@ -38,7 +38,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 8.3 (Berkeley) 1/12/94 - * $Id: machdep.c,v 1.31 1998/03/16 09:38:30 pefo Exp $ + * $Id: machdep.c,v 1.32 1998/03/25 11:48:14 pefo Exp $ */ /* from: Utah Hdr: machdep.c 1.63 91/04/24 */ @@ -550,6 +550,7 @@ mips_init(argc, argv, envv) /* * Initialize the virtual memory system. */ + vm_set_page_size(); /* XXX Works when default page size is 4k */ pmap_bootstrap((vm_offset_t)sysend); } |