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

Mark Johnston markj at FreeBSD.org
Mon Aug 22 03:23:29 UTC 2016


Author: markj
Date: Mon Aug 22 03:23:28 2016
New Revision: 304583
URL: https://svnweb.freebsd.org/changeset/base/304583

Log:
  Remove an unrelated change that crept in with r304577.

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	Mon Aug 22 02:23:05 2016	(r304582)
+++ user/alc/PQ_LAUNDRY/sys/vm/vm_pageout.c	Mon Aug 22 03:23:28 2016	(r304583)
@@ -1597,10 +1597,6 @@ drop_page:
 			if (page_shortage <= 0)
 				vm_page_deactivate(m);
 			else {
-				if (m->dirty == 0 &&
-				    m->object->ref_count != 0 &&
-				    pmap_is_modified(m))
-					vm_cnt.v_postponed_launderings++;
 				if (m->dirty == 0) {
 					vm_page_deactivate(m);
 					page_shortage -=


More information about the svn-src-user mailing list