svn commit: r303358 - user/alc/PQ_LAUNDRY/sys/vm

Alan Cox alc at FreeBSD.org
Wed Jul 27 05:03:59 UTC 2016


Author: alc
Date: Wed Jul 27 05:03:58 2016
New Revision: 303358
URL: https://svnweb.freebsd.org/changeset/base/303358

Log:
  Update a comment.

Modified:
  user/alc/PQ_LAUNDRY/sys/vm/vm_pageout.c

Modified: user/alc/PQ_LAUNDRY/sys/vm/vm_pageout.c
==============================================================================
--- user/alc/PQ_LAUNDRY/sys/vm/vm_pageout.c	Wed Jul 27 04:00:22 2016	(r303357)
+++ user/alc/PQ_LAUNDRY/sys/vm/vm_pageout.c	Wed Jul 27 05:03:58 2016	(r303358)
@@ -1012,10 +1012,9 @@ vm_pageout_launder(struct vm_domain *vmd
 		/*
 		 * If the page appears to be clean at the machine-independent
 		 * layer, then remove all of its mappings from the pmap in
-		 * anticipation of placing it onto the cache queue.  If,
-		 * however, any of the page's mappings allow write access,
-		 * then the page may still be modified until the last of those
-		 * mappings are removed.
+		 * anticipation of freeing it.  If, however, any of the page's
+		 * mappings allow write access, then the page may still be
+		 * modified until the last of those mappings are removed.
 		 */
 		if (object->ref_count != 0) {
 			vm_page_test_dirty(m);


More information about the svn-src-user mailing list