Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/vax/vax Use M_VMPMAP instead of M_HTABLE.



details:   https://anonhg.NetBSD.org/src/rev/1b765d110aaf
branches:  trunk
changeset: 542509:1b765d110aaf
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Fri Jan 31 05:24:31 2003 +0000

description:
Use M_VMPMAP instead of M_HTABLE.

diffstat:

 sys/arch/vax/vax/pmap.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 8fe41d1d0d35 -r 1b765d110aaf sys/arch/vax/vax/pmap.c
--- a/sys/arch/vax/vax/pmap.c   Fri Jan 31 05:00:24 2003 +0000
+++ b/sys/arch/vax/vax/pmap.c   Fri Jan 31 05:24:31 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.119 2003/01/18 07:10:35 thorpej Exp $          */
+/*     $NetBSD: pmap.c,v 1.120 2003/01/31 05:24:31 thorpej Exp $          */
 /*
  * Copyright (c) 1994, 1998, 1999 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -429,10 +429,9 @@
 {
        /*
         * 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");
 }



Home | Main Index | Thread Index | Old Index