From owner-p4-projects@FreeBSD.ORG Fri Jan 4 21:19:06 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0977E16A46D; Fri, 4 Jan 2008 21:19:06 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C29C916A468 for ; Fri, 4 Jan 2008 21:19:05 +0000 (UTC) (envelope-from imp@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B122613C45A for ; Fri, 4 Jan 2008 21:19:05 +0000 (UTC) (envelope-from imp@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m04LJ5tw063695 for ; Fri, 4 Jan 2008 21:19:05 GMT (envelope-from imp@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m04LJ5qs063692 for perforce@freebsd.org; Fri, 4 Jan 2008 21:19:05 GMT (envelope-from imp@freebsd.org) Date: Fri, 4 Jan 2008 21:19:05 GMT Message-Id: <200801042119.m04LJ5qs063692@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to imp@freebsd.org using -f From: Warner Losh To: Perforce Change Reviews Cc: Subject: PERFORCE change 132518 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2008 21:19:06 -0000 http://perforce.freebsd.org/chv.cgi?CH=132518 Change 132518 by imp@imp_paco-paco on 2008/01/04 21:18:12 We need the floating page alloc/free routines reguardless. Affected files ... .. //depot/projects/mips2-jnpr/src/sys/mips/mips/pmap.c#13 edit Differences ... ==== //depot/projects/mips2-jnpr/src/sys/mips/mips/pmap.c#13 (text+ko) ==== @@ -181,9 +181,7 @@ static int init_pte_prot(vm_offset_t va, vm_page_t m, vm_prot_t prot); static void pmap_TLB_invalidate_kernel(vm_offset_t); static void pmap_TLB_update_kernel(vm_offset_t, pt_entry_t); -#ifdef VM_ALLOC_WIRED_TLB_PG_POOL static void pmap_init_fpage(void); -#endif #ifdef SMP static void pmap_invalidate_page_action(void *arg); static void pmap_invalidate_all_action(void *arg); @@ -338,11 +336,9 @@ pmap_init(void) { -#ifdef VM_ALLOC_WIRED_TLB_PG_POOL if (need_wired_tlb_page_pool) { pmap_init_fpage(); } -#endif /* * Initialize the address space (zone) for the pv entries. Set a @@ -685,7 +681,6 @@ /* * Create the floating pages, aka FPAGES! */ -#ifdef VM_ALLOC_WIRED_TLB_PG_POOL static void pmap_init_fpage() { @@ -805,7 +800,6 @@ * Should there be any flush operation at the end? */ } -#endif /* Revision 1.507 *