Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Feb 2014 20:54:27 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r261999 - stable/10/sys/vm
Message-ID:  <201402162054.s1GKsRjI040259@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marcel
Date: Sun Feb 16 20:54:26 2014
New Revision: 261999
URL: http://svnweb.freebsd.org/changeset/base/261999

Log:
  MFC r259908:
  For ia64, use pmap_remove_pages() and not pmap_remove().

Modified:
  stable/10/sys/vm/vm_pageout.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/vm/vm_pageout.c
==============================================================================
--- stable/10/sys/vm/vm_pageout.c	Sun Feb 16 20:45:12 2014	(r261998)
+++ stable/10/sys/vm/vm_pageout.c	Sun Feb 16 20:54:26 2014	(r261999)
@@ -875,6 +875,14 @@ vm_pageout_map_deactivate_pages(map, des
 		tmpe = tmpe->next;
 	}
 
+#ifdef __ia64__
+	/*
+	 * Remove all non-wired, managed mappings if a process is swapped out.
+	 * This will free page table pages.
+	 */
+	if (desired == 0)
+		pmap_remove_pages(map->pmap);
+#else
 	/*
 	 * Remove all mappings if a process is swapped out, this will free page
 	 * table pages.
@@ -883,6 +891,8 @@ vm_pageout_map_deactivate_pages(map, des
 		pmap_remove(vm_map_pmap(map), vm_map_min(map),
 		    vm_map_max(map));
 	}
+#endif
+
 	vm_map_unlock(map);
 }
 #endif		/* !defined(NO_SWAPPING) */



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