Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/m68k/m68k Use pool_allocator_meta rather than pool_...



details:   https://anonhg.NetBSD.org/src/rev/db54d1ed23ab
branches:  trunk
changeset: 770944:db54d1ed23ab
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Thu Nov 03 14:39:05 2011 +0000

description:
Use pool_allocator_meta rather than pool_allocator_nointr to allocate
struct pv_entry pool in the previous fix for PR port-m68k/45519.
Per comment from yamt@ on source-changes-d@:
http://mail-index.NetBSD.org/source-changes-d/2011/10/31/msg004211.html

diffstat:

 sys/arch/m68k/m68k/pmap_motorola.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 157570b553ab -r db54d1ed23ab sys/arch/m68k/m68k/pmap_motorola.c
--- a/sys/arch/m68k/m68k/pmap_motorola.c        Thu Nov 03 14:13:53 2011 +0000
+++ b/sys/arch/m68k/m68k/pmap_motorola.c        Thu Nov 03 14:39:05 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_motorola.c,v 1.63 2011/10/29 18:26:19 tsutsui Exp $        */
+/*     $NetBSD: pmap_motorola.c,v 1.64 2011/11/03 14:39:05 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -119,7 +119,7 @@
 #include "opt_m68k_arch.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_motorola.c,v 1.63 2011/10/29 18:26:19 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_motorola.c,v 1.64 2011/11/03 14:39:05 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -547,7 +547,7 @@
         * Initialize the pv_entry pools.
         */
        pool_init(&pmap_pv_pool, sizeof(struct pv_entry), 0, 0, 0, "pvpl",
-           &pool_allocator_nointr, IPL_NONE);
+           &pool_allocator_meta, IPL_NONE);
 
        /*
         * Now that this is done, mark the pages shared with the



Home | Main Index | Thread Index | Old Index