Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/powerpc/oea pmap_pv_protect is not STATIC



details:   https://anonhg.NetBSD.org/src/rev/d92e61b91c09
branches:  trunk
changeset: 361610:d92e61b91c09
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Feb 18 18:58:15 2022 +0000

description:
pmap_pv_protect is not STATIC

diffstat:

 sys/arch/powerpc/oea/pmap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ef64703c30f2 -r d92e61b91c09 sys/arch/powerpc/oea/pmap.c
--- a/sys/arch/powerpc/oea/pmap.c       Fri Feb 18 18:31:18 2022 +0000
+++ b/sys/arch/powerpc/oea/pmap.c       Fri Feb 18 18:58:15 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.109 2022/02/16 23:49:27 riastradh Exp $     */
+/*     $NetBSD: pmap.c,v 1.110 2022/02/18 18:58:15 martin Exp $        */
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.109 2022/02/16 23:49:27 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.110 2022/02/18 18:58:15 martin Exp $");
 
 #define        PMAP_NOOPNAMES
 
@@ -214,7 +214,7 @@
 STATIC void pmap_protect(pmap_t, vaddr_t, vaddr_t, vm_prot_t);
 STATIC void pmap_unwire(pmap_t, vaddr_t);
 STATIC void pmap_page_protect(struct vm_page *, vm_prot_t);
-STATIC void pmap_pv_protect(paddr_t, vm_prot_t);
+void pmap_pv_protect(paddr_t, vm_prot_t);
 STATIC bool pmap_query_bit(struct vm_page *, int);
 STATIC bool pmap_clear_bit(struct vm_page *, int);
 



Home | Main Index | Thread Index | Old Index