On Sun, 18 Aug 2019, Jeff Roberson wrote:
Author: jeff
Date: Sun Aug 18 08:07:31 2019
New Revision: 351183
URL: https://svnweb.freebsd.org/changeset/base/351183
Log:
Remove unnecessary debugging from r351181 that caused powerpc build to fail.
I'm not sure how I made such a mess of this. I have built universe
multiple times on this branch since the phys_avail changes were so
extensive. I must've made some error in the process of breaking it into
commitable pieces and addressing review feedback. I will be more careful
with my next set of commits.
Sorry for any trouble.
Thanks,
Jeff
Tested by: make universe TARGETS=powerpc
Modified:
head/sys/vm/vm_phys.c
Modified: head/sys/vm/vm_phys.c
==============================================================================
--- head/sys/vm/vm_phys.c Sun Aug 18 07:43:15 2019 (r351182)
+++ head/sys/vm/vm_phys.c Sun Aug 18 08:07:31 2019 (r351183)
@@ -1101,8 +1101,8 @@ vm_phys_free_pages(vm_page_t m, int order)
vm_page_t m_buddy;
KASSERT(m->order == VM_NFREEORDER,
- ("vm_phys_free_pages: page %p(%p) has unexpected order %d",
- m, (void *)m->phys_addr, m->order));
+ ("vm_phys_free_pages: page %p has unexpected order %d",
+ m, m->order));
KASSERT(m->pool < VM_NFREEPOOL,
("vm_phys_free_pages: page %p has unexpected pool %d",
m, m->pool));
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"