Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jul 2011 18:50:40 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r223800 - in head/sys/sparc64: include sparc64
Message-ID:  <201107051850.p65Iofvo081302@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marius
Date: Tue Jul  5 18:50:40 2011
New Revision: 223800
URL: http://svn.freebsd.org/changeset/base/223800

Log:
  - pmap_cache_remove() and pmap_protect_tte() are only used within pmap.c
    so static'ize them.
  - Correct a typo.

Modified:
  head/sys/sparc64/include/pmap.h
  head/sys/sparc64/sparc64/pmap.c

Modified: head/sys/sparc64/include/pmap.h
==============================================================================
--- head/sys/sparc64/include/pmap.h	Tue Jul  5 18:49:55 2011	(r223799)
+++ head/sys/sparc64/include/pmap.h	Tue Jul  5 18:50:40 2011	(r223800)
@@ -90,12 +90,9 @@ void	pmap_kremove_flags(vm_offset_t va);
 boolean_t pmap_page_is_mapped(vm_page_t m);
 
 int	pmap_cache_enter(vm_page_t m, vm_offset_t va);
-void	pmap_cache_remove(vm_page_t m, vm_offset_t va);
 
 int	pmap_remove_tte(struct pmap *pm1, struct pmap *pm2, struct tte *tp,
 			vm_offset_t va);
-int	pmap_protect_tte(struct pmap *pm1, struct pmap *pm2, struct tte *tp,
-			 vm_offset_t va);
 
 void	pmap_map_tsb(void);
 void	pmap_set_kctx(void);

Modified: head/sys/sparc64/sparc64/pmap.c
==============================================================================
--- head/sys/sparc64/sparc64/pmap.c	Tue Jul  5 18:49:55 2011	(r223799)
+++ head/sys/sparc64/sparc64/pmap.c	Tue Jul  5 18:50:40 2011	(r223800)
@@ -152,6 +152,9 @@ struct pmap kernel_pmap_store;
 static vm_paddr_t pmap_bootstrap_alloc(vm_size_t size, uint32_t colors);
 
 static void pmap_bootstrap_set_tte(struct tte *tp, u_long vpn, u_long data);
+static void pmap_cache_remove(vm_page_t m, vm_offset_t va);
+static int pmap_protect_tte(struct pmap *pm1, struct pmap *pm2,
+    struct tte *tp, vm_offset_t va);
 
 /*
  * Map the given physical page at the specified virtual address in the
@@ -956,7 +959,7 @@ pmap_cache_enter(vm_page_t m, vm_offset_
 	return (0);
 }
 
-void
+static void
 pmap_cache_remove(vm_page_t m, vm_offset_t va)
 {
 	struct tte *tp;
@@ -1415,7 +1418,7 @@ pmap_remove_all(vm_page_t m)
 	vm_page_unlock_queues();
 }
 
-int
+static int
 pmap_protect_tte(struct pmap *pm, struct pmap *pm2, struct tte *tp,
     vm_offset_t va)
 {
@@ -1984,7 +1987,7 @@ pmap_page_wired_mappings(vm_page_t m)
 
 /*
  * Remove all pages from specified address space, this aids process exit
- * speeds.  This is much faster than pmap_remove n the case of running down
+ * speeds.  This is much faster than pmap_remove in the case of running down
  * an entire address space.  Only works for the current pmap.
  */
 void



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107051850.p65Iofvo081302>