svn commit: r331425 - head/sys/vm

Mark Johnston markj at FreeBSD.org
Fri Mar 23 14:38:57 UTC 2018


Author: markj
Date: Fri Mar 23 14:38:56 2018
New Revision: 331425
URL: https://svnweb.freebsd.org/changeset/base/331425

Log:
  Correct a couple of assertion messages in vm_page_reclaim_run().
  
  MFC after:	3 days

Modified:
  head/sys/vm/vm_page.c

Modified: head/sys/vm/vm_page.c
==============================================================================
--- head/sys/vm/vm_page.c	Fri Mar 23 14:36:24 2018	(r331424)
+++ head/sys/vm/vm_page.c	Fri Mar 23 14:38:56 2018	(r331425)
@@ -2473,7 +2473,7 @@ retry:
 						goto unlock;
 					}
 					KASSERT(m_new->wire_count == 0,
-					    ("page %p is wired", m));
+					    ("page %p is wired", m_new));
 
 					/*
 					 * Replace "m" with the new page.  For
@@ -2485,7 +2485,7 @@ retry:
 						pmap_remove_all(m);
 					m_new->aflags = m->aflags;
 					KASSERT(m_new->oflags == VPO_UNMANAGED,
-					    ("page %p is managed", m));
+					    ("page %p is managed", m_new));
 					m_new->oflags = m->oflags & VPO_NOSYNC;
 					pmap_copy_page(m, m_new);
 					m_new->valid = m->valid;


More information about the svn-src-head mailing list