svn commit: r354340 - head/sys/mips/mips
Brooks Davis
brooks at FreeBSD.org
Mon Nov 4 21:06:07 UTC 2019
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))
More information about the svn-src-all
mailing list