Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Nov 2019 21:06:07 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r354340 - head/sys/mips/mips
Message-ID:  <201911042106.xA4L67pP044663@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brooks
Date: Mon Nov  4 21:06:06 2019
New Revision: 354340
URL: https://svnweb.freebsd.org/changeset/base/354340

Log:
  Remove an outdated assertion.
  
  The exclusive lock assertion became incorrect due to changes in lock
  scope in r354155.
  
  Discussed with:	jeffr
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/mips/mips/pmap.c

Modified: head/sys/mips/mips/pmap.c
==============================================================================
--- head/sys/mips/mips/pmap.c	Mon Nov  4 19:38:07 2019	(r354339)
+++ head/sys/mips/mips/pmap.c	Mon Nov  4 21:06:06 2019	(r354340)
@@ -3093,7 +3093,6 @@ pmap_clear_modify(vm_page_t m)
 
 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
 	    ("pmap_clear_modify: page %p is not managed", m));
-	VM_OBJECT_ASSERT_WLOCKED(m->object);
 	vm_page_assert_busied(m);
 
 	if (!pmap_page_is_write_mapped(m))



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