Date: Sun, 29 Dec 2019 19:24:25 +0000 From: bugzilla-noreply@freebsd.org To: bugs@FreeBSD.org Subject: =?UTF-8?B?W0J1ZyAyNDI5NjFdIENyYXNoZXMgKGVsZjY0X2NvcmVkdW1wIA==?= =?UTF-8?B?4oCmIHZtX29iamVjdF9zZXRfd3JpdGVhYmxlX2RpcnR5KSBhZnRlciB0aGUg?= =?UTF-8?B?cmVjZW50IHZtIHBhdGNoIHNlcmllcw==?= Message-ID: <bug-242961-227-FaXVdoxTtI@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-242961-227@https.bugs.freebsd.org/bugzilla/>
index | next in thread | previous in thread | raw e-mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=242961 --- Comment #11 from Mark Johnston <markj@FreeBSD.org> --- (In reply to Greg V from comment #10) I presume these are all with INVARIANTS enabled? Can you try this patch instead of the last one? diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c index e99732028af5..b9ba4b502459 100644 --- a/sys/vm/vm_page.c +++ b/sys/vm/vm_page.c @@ -4013,7 +4013,7 @@ vm_page_mvqueue(vm_page_t m, const uint8_t nqueue, const uint16_t nflag) KASSERT(nflag == PGA_REQUEUE || nflag == PGA_REQUEUE_HEAD, ("%s: invalid flags %x", __func__, nflag)); - if ((m->oflags & VPO_UNMANAGED) != 0) + if ((m->oflags & VPO_UNMANAGED) != 0 || vm_page_wired(m)) return; old = vm_page_astate_load(m); -- You are receiving this mail because: You are the assignee for the bug.home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-242961-227-FaXVdoxTtI>
