summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-08-11 01:56:19 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-08-11 01:56:19 +0000
commitf126a4beeab5a4d2837f51ccb0ece5e1e7f24a76 (patch)
treeb59f5be5ba8ef14cf4e23c2568f0fd8fa0478216
parent6a72d3d96092358e95b018c6c87809ef0fcd634e (diff)
Use more sensible malloc type.
-rw-r--r--sys/arch/vax/vax/pmap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/vax/vax/pmap.c b/sys/arch/vax/vax/pmap.c
index 6cc82f4833d..7367836cc41 100644
--- a/sys/arch/vax/vax/pmap.c
+++ b/sys/arch/vax/vax/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.19 2001/07/25 13:25:33 art Exp $ */
+/* $OpenBSD: pmap.c,v 1.20 2001/08/11 01:56:18 art Exp $ */
/* $NetBSD: pmap.c,v 1.74 1999/11/13 21:32:25 matt Exp $ */
/*
* Copyright (c) 1994, 1998, 1999 Ludd, University of Lule}, Sweden.
@@ -327,10 +327,9 @@ pmap_init()
{
/*
* Create the extent map used to manage the page table space.
- * XXX - M_HTABLE is bogus.
*/
ptemap = extent_create("ptemap", ptemapstart, ptemapend,
- M_HTABLE, ptmapstorage, PTMAPSZ, EX_NOCOALESCE);
+ M_VMPMAP, ptmapstorage, PTMAPSZ, EX_NOCOALESCE);
if (ptemap == NULL)
panic("pmap_init");
}